-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "serverless-plugin-bundler",
"version": "0.1.2-alpha",
"description": "A node 4.3 compatible serverless plugin to bundle code using webpack for deploy or local invocations",
"main": "./dist/index.js",
"files": "./dist",
"scripts": {
"build": "webpack",
"clean": "rm -r dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build",
"start": "webpack; node dist",
"test": "nyc ava test/**/* !test/mocks/**/*",
"test-watch": "ava --watch test/**/* !test/mocks/**/*",
"watch": "webpack -w"
},
"author": "hugo.armstrong@gmail.com",
"license": "MIT",
"ava": {
"require": [
"babel-register"
]
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"nyc": "^10.1.2",
"sinon": "^2.0.0",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"fse-promise": "^0.1.3",
"lodash": "^4.17.4",
"loglevel": "^1.4.1",
"tmp-promise": "^1.0.3"
},
"keywords": [
"serverless",
"plugin",
"bundler",
"webpack",
"babel"
]
}