forked from business-case-entrepreneurs/bce-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 953 Bytes
/
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
{
"name": "@bcase/bce-core",
"version": "0.0.0",
"private": true,
"description": "",
"license": "UNLICENSED",
"author": {
"name": "BCE Solutions",
"email": "[email protected]"
},
"main": "README.md",
"scripts": {
"build": "npm run sort && npm run clean && lerna run build",
"clean": "lerna run clean",
"postinstall": "lerna bootstrap && npm run sort",
"publish:next": "lerna publish --canary --preid next --dist-tag next --yes",
"serve": "lerna run serve --parallel --stream",
"sort": "sort-package-json && lerna exec ../../node_modules/.bin/sort-package-json"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/cz.config.js"
}
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-customizable": "^5.3.0",
"lerna": "^3.10.6",
"prettier": "^1.16.1",
"sort-package-json": "^1.17.1"
}
}