-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.54 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "entourage",
"version": "0.0.2",
"description": "Environment bootstrapping for integration tests",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"lint-staged": "lint-staged",
"docs:modules:cli": "cp ./packages/entourage-cli/README.md ./docs/cli/1.md ; ./node_modules/.bin/jsdoc2md ./packages/entourage-cli/src/* > ./docs/cli/2.md",
"docs:concat:cli": "./node_modules/.bin/concat-md docs/cli > ./docs/cli/README.md ; rm ./docs/cli/1.md ; rm ./docs/cli/2.md",
"docs:cli": "npm run docs:modules:cli ; npm run docs:concat:cli",
"docs:modules:server": "cp ./packages/entourage-server/README.md ./docs/server/1.md ; ./node_modules/.bin/jsdoc2md ./packages/entourage-server/src/* > ./docs/server/2.md",
"docs:concat:server": "./node_modules/.bin/concat-md docs/server > ./docs/server/README.md ; rm ./docs/server/1.md ; rm ./docs/server/2.md",
"docs:server": "npm run docs:modules:server ; npm run docs:concat:server",
"docs:readme": "cp ./README.md ./docs/readme/README.md",
"docs:dev": "npm run docs:readme ; npm run docs:cli ; npm run docs:server ; ./node_modules/.bin/vuepress dev docs",
"docs:build": "npm run docs:readme ; npm run docs:cli ; npm run docs:server ; NODE_ENV=production ./node_modules/.bin/vuepress build docs",
"docs:serve": "light-server -s public -p 7000 --servePrefix /entourage/",
"release": "lerna version"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pre-commit": "lint-staged",
"keywords": [
"test",
"tests",
"automation",
"integration",
"ci"
],
"author": "Chris Kalmar <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/runtime": "7.9.2",
"babel-eslint": "10.1.0",
"babel-jest": "25.2.3",
"codecov": "3.6.5",
"concat-md": "0.3.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"husky": "4.2.3",
"jest": "25.2.3",
"jsdoc-to-markdown": "5.0.3",
"lerna": "3.20.2",
"light-server": "2.6.4",
"lint-staged": "10.0.8",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"prettier-eslint": "9.0.1",
"rimraf": "3.0.0",
"vuepress": "1.4.0"
},
"dependencies": {
"entourage-server": "file:packages/entourage-server"
},
"repository": {
"type": "git",
"url": "https://github.com/chriskalmar/entourage"
}
}