-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.29 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
56
{
"name": "fe-guide",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./src/webpack/dist/index.bundle.js",
"bin": {
"pojo": "./src/webpack/pojo-loader/bin/pojo-loader.js",
"rematch": "/Users/dianping/website/fe-guide/node_modules/rematch-cli/bin/rematch.js"
},
"babel": {
"presets": []
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-install": "echo 'preinstall'",
"install": "echo 'install'",
"post-install": "echo 'postinstall'",
"pre-publish": "echo 'prepublish'",
"prepare": "echo 'prepare'",
"pre-commit": "echo 'pre-commit'",
"post-commit": "echo 'postcommit'",
"post-receive": "echo 'postreceive'"
}
},
"scripts": {
"lint:fix": "eslint . --fix",
"source": "node ./src/sourcemap/test.js",
"test": "node ./src/test/src/test.js",
"test:ndb": "ndb ./src/test/src/test.js",
"test:debug": "nodemon ./src/test/src/server.js",
"commit": "git-cz"
},
"ava": {
"files": [
"test/src/*.js"
],
"sources": [
"bin/**/*.js"
]
},
"author": "arnold",
"license": "MIT",
"dependencies": {
"husky": "^4.3.8",
"node-red": "^1.3.5",
"react": "^16.12.0",
"request": "^2.88.0"
}
}