-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
72
{
"name": "bootprint-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clarify": "^2.1.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"lerna": "^3.20.2",
"lint-staged": "^10.0.3",
"loud-rejection": "^2.2.0",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"prettier-config-standard": "^1.0.1",
"sinon": "^8.1.1",
"thought": "^3.0.0",
"trace": "^3.1.1"
},
"dependencies": {
"thought-plugin-jsdoc": "2"
},
"scripts": {
"postinstall": "lerna bootstrap",
"format": "prettier --write **/*.js",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"test": "nyc --reporter=lcov --reporter=html --reporter=text-summary lerna run test --stream",
"thought": "thought run -a",
"thought:with-packages": "yarn thought && lerna run thought",
"fix-packages-package-json": "node build/fix-packages-package-json.js",
"version": "yarn thought && yarn fix-packages-package-json"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"description": "A monorepo to keep all bootprint-related packages",
"repository": {
"type": "git",
"url": "https://github.com/bootprint/bootprint-monorepo.git"
},
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/bootprint/bootprint-monorepo/issues"
},
"license": "MIT"
}