-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 KB
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
56
57
58
59
60
{
"name": "CloudsearchCloudformationResource",
"version": "0.1.0",
"private": true,
"main": "handler.js",
"engines": {
"node": ">=4.3"
},
"dependencies": {
"aws-sdk": "^2.6.7",
"bluebird": "^3.3.4",
"babel-runtime": "6.11.6",
"request": "2.79.0",
"joi": "10.2.1",
"immutable": "3.8.1",
"node-lambda-events": "0.1.3"
},
"devDependencies": {
"aws-sdk-mock": "~1.6.1",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"babel-polyfill": "6.13.0",
"babel-register": "6.16.3",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"faker": "~3.1.0",
"jest": "~18.1",
"json-loader": "^0.5.4",
"webpack": "^1.13.1",
"sinon": "~1.17",
"path-to-regexp": "^1.5.3",
"serverless-webpack": "1.0.0-rc.2",
"serverless-jest-plugin": "~0.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb"
},
"scripts": {
"lint": "eslint events functions pages test handler.js webpack.config.js",
"test": "jest __tests__/.+/*.test.js --coverage --notify",
"test:watch": "npm run test -- --reporter min --watch"
}
}