forked from 36base/girlsfrontline-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "girlsfrontline-core",
"version": "0.5.1",
"description": "GirlsFrontline API",
"main": "./dist/index.js",
"repository": "https://github.com/CirnoV/girlsfrontline-core",
"author": "CirnoV <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && babel src --presets=stage-1 --out-dir dist --ignore **/*.spec.js",
"prepublish": "npm run build",
"precommit": "lint-staged && npm run prepublish",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.18.0",
"eslint-config-prev": "^6.10.0",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.1",
"rimraf": "^2.6.2"
},
"jest": {
"transform": {
"^.+\\.(js)$": "babel-jest"
}
},
"lint-staged": {
"^.+\\.(js)$": [
"eslint --fix",
"git add"
]
}
}