-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "leap-lambda-boilerplate",
"version": "1.4.0",
"main": "src/index.js",
"license": "MPL-2.0",
"author": "LeapDAO <[email protected]>",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"precommit": "./node_modules/.bin/lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"keywords": [],
"peerDependencies": {
"aws-sdk": "^2.843.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.17.0",
"husky": "^0.14.3",
"jest": "^23.0.1",
"lint-staged": "^7.0.5",
"prettier": "^1.12.1"
},
"jest": {
"testEnvironment": "node"
}
}