This repository was archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.81 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.81 KB
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
{
"name": "createrest-lerna",
"private": true,
"scripts": {
"build": "lerna run build --stream",
"changelog": "conventional-changelog -p atomix -i changelog.md -s -r 0 && git add changelog.md && git commit -m \"$(git describe --abbrev=0 --tags) changelog\"",
"clean": "lerna run clean --stream",
"coverage": "lerna run coverage --stream",
"docs": "lerna run docs --scope createrest",
"metapak": "metapak || exit 0",
"postinstall": "lerna bootstrap; npm run metapak --silent",
"postpublish": "npm run changelog && git push --all origin && git push --tags origin && lerna run docs:publish",
"prepublish": "lerna run build --stream && lerna run test --stream",
"publish": "lerna publish",
"report": "lerna run report --stream",
"test": "lerna run build && lerna run test"
},
"devDependencies": {
"@atomix/eslint-config": "^6.1.1",
"@ava/babel-preset-stage-4": "^1.1.0",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-node8": "^1.2.0",
"babel-register": "^6.26.0",
"buildbranch": "^2.0.0",
"conventional-changelog-atomix": "^0.3.2",
"conventional-changelog-cli": "^1.3.8",
"coveralls": "^3.0.0",
"cz-customizable": "^5.2.0",
"eslint": "^4.16.0",
"lerna": "^2.8.0",
"metapak": "0.0.21",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.2.2",
"supertest": "^3.0.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}