-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "no-pro",
"private": true,
"description": "node profiling tools - root mono-repo package",
"license": "MIT",
"author": "Patrick Mueller <[email protected]> (https://github.com/pmuellr)",
"homepage": "https://github.com/pmuellr/no-pro",
"scripts": {
"build": "node tools/run-all.js npm run -s build",
"ncu": "node tools/run-all.js ncu -u --packageFile package.json",
"serve": "serve",
"standard": "standard --verbose && node tools/run-all npm run -s standard",
"test-pkgs": "node tools/run-all.js npm run -s test",
"test": "npm run -s standard && npm run -s test-pkgs",
"watch": "nodemon --exec 'npm run -s test'",
"postinstall": "node tools/run-all npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/pmuellr/no-pro.git"
},
"bugs": {
"url": "https://github.com/pmuellr/no-pro/issues"
},
"standard": {
"ignore": [
"tmp/**/*",
"docs/**/*"
]
},
"devDependencies": {
"chalk": "^2.4.2",
"dependency-check": "^3.3.0",
"express": "^4.16.4",
"jest": "^24.1.0",
"nodemon": "^1.18.9",
"serve": "^10.1.2",
"shelljs": "^0.8.3",
"standard": "^12.0.1",
"tiny-json-http": "^7.0.2",
"uuid": "^3.3.2"
},
"dependencies": {}
}