This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 1.87 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "boldr",
"version": "0.0.0",
"private": true,
"description": "Boldr CMF platform for Universal React Applications.",
"scripts": {
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"clean": "lerna clean --yes",
"commit": "git-cz",
"gencoverage": "node ./internal/scripts/mapCoverage.js",
"coverage": "codecov",
"lint": "eslint . --fix",
"postinstall": "yarn run bootstrap",
"precommit": "lint-staged --verbose",
"prepush": "lerna run test -- -u",
"prettier": "node ./internal/scripts/prettier.js write",
"test": "lerna run test",
"test:ci": "lerna run test:ci"
},
"keywords": [
"react",
"boldr",
"universal"
],
"author": {
"name": "Steven Truesdell",
"email": "[email protected]",
"url": "strues.io"
},
"license": "MIT",
"homepage": "https://github.com/strues/boldr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/strues/boldr.git"
},
"bugs": {
"url": "https://github.com/strues/boldr/issues"
},
"devDependencies": {
"codecov": "2.3.1",
"commitizen": "2.9.6",
"cross-env": "5.1.0",
"cz-emoji": "1.0.0",
"debug": "3.1.0",
"eslint": "4.9.0",
"eslint-config-boldr": "0.14.0",
"flow-bin": "0.57.3",
"fs-extra": "4.0.2",
"glob": "7.1.2",
"husky": "0.14.3",
"istanbul-api": "1.1.14",
"istanbul-lib-coverage": "1.1.1",
"lerna": "2.4.0",
"lint-staged": "4.3.0",
"prettier": "1.7.4",
"rimraf": "2.6.2",
"semver": "5.4.1",
"shelljs": "0.7.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"scopes": [
"auth",
"cli",
"core",
"frontend",
"server",
"tools",
"utils",
"ci"
]
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
}
}