-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "cobinhood",
"version": "0.1.0",
"description": "Cobinhood API Client",
"main": "src/index.js",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix src",
"precommit": "lint-staged",
"test": "jest -i",
"test:coverage": "jest -i --coverage"
},
"keywords": [
"cobinhood",
"api"
],
"author": "mamatsunami",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015-node5": "^1.2.0",
"eslint": "3.8.1",
"eslint-config-airbnb-base": "9.0.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.0",
"prettier": "^1.5.3"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules"
]
}
}