forked from graphistry/falcor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
{
"name": "falcorjs",
"version": "1.0.0",
"private": true,
"description": "Graphistry's FalcorJS mono repo",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"lerna": "lerna",
"bootstrap": "lerna bootstrap --concurrency=1",
"test": "cross-env NODE_ENV=production MOCHA_COLORS=true lerna run test --concurrency=1",
"build": "cross-env NODE_ENV=production MOCHA_COLORS=true lerna run build --concurrency=1",
"deploy": "cross-env NODE_ENV=production MOCHA_COLORS=true lerna publish --concurrency=1 --conventional-commits",
"dry-run": "cross-env NODE_ENV=production MOCHA_COLORS=true lerna run prepublish --concurrency=1",
"test-coverage": "cross-env NODE_ENV=test MOCHA_COLORS=true lerna run test-coverage --concurrency=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphistry/falcor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/graphistry/falcor/issues"
},
"homepage": "https://github.com/graphistry/falcor/blob/master/README.md",
"devDependencies": {
"commitizen": "~2.9.6",
"cross-env": "~5.0.0",
"cz-conventional-changelog": "~2.0.0",
"lerna": "^2.0.0",
"validate-commit-msg": "~2.12.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}