forked from entropic-dev/entropic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
57
58
59
{
"name": "entropic",
"description": "A new package registry with a new CLI, designed to be easy to stand up inside your network.",
"version": "1.0.0",
"author": "C J Silverio <[email protected]>",
"bugs": {
"url": "https://github.com/entropic-dev/entropic/issues"
},
"contributors": [
"C J Silverio <[email protected]>",
"Chris Dickinson <[email protected]> (http://neversaw.us/)"
],
"dependencies": {},
"devDependencies": {
"husky": "2.4.0",
"lint-staged": "8.2.0",
"markdownlint": "~0.15.0",
"markdownlint-cli": "~0.16.0",
"npm-run-all": "4.1.5",
"opt-cli": "1.6.0",
"prettier": "~1.17.1"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/entropic-dev/entropic#readme",
"husky": {
"hooks": {
"pre-commit": "opt --in pre-commit --exec lint-staged"
}
},
"keywords": [],
"license": "Apache-2.0",
"lint-staged": {
"*.js": [
"npm run lint-registry",
"npm run lint-cli",
"prettier --write",
"git add"
],
"*.md": [
"npm run lint-md",
"git add"
]
},
"main": "index.js",
"private": true,
"repository": "https://github.com/entropic-dev/entropic",
"scripts": {
"lint": "run-s -s lint-registry lint-cli lint-md",
"lint-cli": "cd cli; npm run lint",
"lint-fix": "prettier --write '**/*.js'",
"lint-md": "markdownlint \"**/*.md\" -i \"**/node_modules/**\"",
"lint-registry": "cd services/registry; npm run lint",
"postinstall": "for d in cli $(printf 'services/%s ' 'registry' 'workers' 'web' 'storage' 'common/boltzmann'); do ( cd $d; npm i ); done",
"start": "docker-compose up",
"test": "for d in cli $(printf 'services/%s ' 'registry' 'workers' 'web' 'storage' 'common/boltzmann'); do ( cd $d; npm t ); done"
}
}