-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "nodedemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"demo:crawler": "cd crawler && node index.js",
"demo:daemon": "cd daemon && node main.js",
"demo:fork_multiProcess_samePort": "cd fork_multiProcess_samePort && node main.js",
"demo:fork_multiProcess_samePort:true": "cd fork_multiProcess_samePort && node main_true.js",
"demo:fork_orphan": "cd fork_orphan && node main.js",
"demo:ipc_pipe": "cd ipc_pipe && node main.js",
"demo:jsonfile": "cd jsonfile && node index.js",
"test:promise": "promises-aplus-tests myPromise/adapter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FunnyLiu/nodeDemo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FunnyLiu/nodeDemo/issues"
},
"homepage": "https://github.com/FunnyLiu/nodeDemo#readme",
"dependencies": {
"@tomato-js/env": "0.0.22",
"crawler": "^1.2.1",
"gitlab": "file:gitlab",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"vm2": "^3.9.2"
},
"devDependencies": {
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"promises-aplus-tests": "^2.1.2",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"prettier/*.js": [
"prettier --write",
"git add"
]
}
}