forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 2.93 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
{
"version": "8.1.0",
"prettier": {
"singleQuote": true
},
"scripts": {
"build": "docker build -t bitcore-node .",
"watch": "./node_modules/.bin/lerna run watch --parallel",
"postinstall": "npm run bootstrap && npm run compile",
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"insight": "cd packages/insight && npm start",
"insight-previous": "cd ./packages/insight-previous && npm start",
"node": "cd packages/bitcore-node && npm start",
"bws": "cd packages/bitcore-wallet-service && npm start",
"compile": "./node_modules/.bin/lerna run compile",
"test:ci": "npm run test:ci:build && npm run test:ci:unit && npm run test:ci:integration",
"test:ci:build": "docker-compose -f docker-compose.test.yml build",
"test:ci:unit": "./ci.sh 'npm run lerna:ci:unit'",
"test:ci:integration": "./ci.sh 'npm run lerna:ci:integration'",
"test:bitcore-wallet-service": "cd ./packages/bitcore-wallet-service && npm run test",
"ci:bitcore-wallet-service": "./ci.sh 'npm run test:bitcore-wallet-service'",
"test:bitcore-wallet-client": "cd ./packages/bitcore-wallet-client && npm run test",
"ci:bitcore-wallet-client": "./ci.sh 'npm run test:bitcore-wallet-client'",
"test:bitcore-node": "cd ./packages/bitcore-node && npm run test",
"ci:bitcore-node": "./ci.sh 'npm run test:bitcore-node'",
"test:bitcore-lib": "cd ./packages/bitcore-lib && npm run test",
"ci:bitcore-lib": "./ci.sh 'npm run test:bitcore-lib'",
"test:bitcore-lib-cash": "cd ./packages/bitcore-lib-cash && npm run test",
"ci:bitcore-lib-cash": "./ci.sh 'npm run test:bitcore-lib-cash'",
"test:bitcore-p2p": "cd ./packages/bitcore-p2p && npm run test",
"ci:bitcore-p2p": "./ci.sh 'npm run test:bitcore-p2p'",
"test:bitcore-p2p-cash": "cd ./packages/bitcore-p2p-cash && npm run test",
"ci:bitcore-p2p-cash": "./ci.sh 'npm run test:bitcore-p2p-cash'",
"test:bitcore-mnemonic": "cd ./packages/bitcore-mnemonic && npm run test",
"ci:bitcore-mnemonic": "./ci.sh 'npm run test:bitcore-mnemonic'",
"test:insight-previous": "cd ./packages/insight-previous && npm run test",
"ci:insight-previous": "./ci.sh 'npm run test:insight-previous'",
"test:insight": "cd ./packages/insight && npm run test",
"ci:insight": "./ci.sh 'npm run test:insight'",
"lerna:ci:unit": "./node_modules/.bin/lerna run test:ci --concurrency 1 --stream",
"lerna:ci:integration": "./node_modules/.bin/lerna run test:ci:integration --concurrency 1 --stream",
"lerna:ci:coverage": "./node_modules/.bin/lerna run coverage --concurrency 1 --stream"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"cz-customizable": "^5.2.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"lerna": "^3.6.0",
"prettier": "^1.14.3",
"typedoc": "^0.14.0",
"typescript-eslint-parser": "^15.0.0"
},
"dependencies": {}
}