-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "propskit",
"version": "4.0.10",
"description": "Library containing classes to work with the sidechain",
"main": "dist/index.js",
"scripts": {
"protos": "./scripts/build_protos.sh $(pwd)",
"test": "NODE_ENV=test mocha --timeout 60000 $NODE_DEBUG_OPTION $(find lib -name '*.test.ts') -r ts-node/register --exit || :",
"pretest": "rm -f /tmp/out.log && cd scripts && sh ./local-sawtooth.sh && cd ../",
"posttest": "kill $(ps aux | egrep '[g]o run cmd/main.go -c -f ./configs/development.json|[d]ocker-compose -f ./sawtooth-default.yaml up|[/]var.*configs/development' | awk '{print $2}') && cd scripts && sh ./destroy-local-sawtooth.sh && cd ../",
"qbuild": "npm run transpile",
"build": "npm run transpile && npm run protos",
"transpile": "tsc && npm run copyfiles",
"copyfiles": "copyfiles lib/**/*.lua lib/**/*.js dist -u 1",
"prepublish": "npm run build",
"check-coverage": "nyc check-coverage --statement 100 --branches 100 --functions 100 --lines 100",
"commit": "git-cz",
"tdd": "multi='mocha-osx-reporter=- spec=-' npm test -- --reporter mocha-multi -w",
"cover": "nyc npm test",
"doc": "apidoc -i lib/ -o public/doc/",
"publish-docs-staging": "npm run doc && aws s3 sync public/doc/. s3://props-staging-docs/transaction-manager --acl private --profile props-docs-staging && aws --profile props-docs-staging cloudfront create-invalidation --distribution-id EPFJEJGEN9QEX --paths /",
"publish-docs": "npm run doc && aws s3 sync public/doc/. s3://props-production-docs/transaction-manager --acl private --profile props-docs && aws --profile props-docs cloudfront create-invalidation --distribution-id E11G0B9Z3QXNJN --paths /",
"wip": "mocha --compilers js:babel-register -w --",
"watch:test": "npm test -- -w"
},
"dependencies": {
"apidoc": "^0.16.1",
"async-wait-until": "^1.2.4",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"cbor": "^4.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.4.0",
"copy-files": "^0.1.0",
"ethereum-address": "^0.0.4",
"ethereumjs-util": "^6.0.0",
"goog": "^0.2.1",
"google-closure-library": "^20180910.0.0",
"google-protobuf": "^3.6.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.22.1",
"moment-timezone": "^0.5.17",
"newrelic": "2.5.0",
"protobufjs": "^6.8.8",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sawtooth-sdk": "^1.0.5",
"sha256": "^0.2.0",
"superagent": "^5.0.2",
"ts-node": "^6.0.5",
"typescript": "^2.8.3",
"uuid": "^3.3.2",
"web3": "1.0.0-beta.35",
"winston": "^3.2.1",
"wtfnode": "^0.7.0",
"zeromq": "^5.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/google-protobuf": "^3.2.7",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.6",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.5",
"@types/node": "^10.12.2",
"@types/prettyjson": "^0.0.28",
"@types/superagent": "^3.8.5",
"@types/uuid": "^3.4.4",
"commitizen": "^2.8.6",
"copyfiles": "^2.0.0",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^5.2.0",
"mocha-multi": "^1.0.1",
"mocha-osx-reporter": "^0.1.2",
"nodejs-dashboard": "latest",
"nyc": "^10.0.0",
"sinon": "^7.1.0",
"ts-protoc-gen": "^0.9.0",
"tslint": "^4.5.1",
"tslint-config-airbnb": "^1.1.1"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"author": "Jonathan Achai",
"license": "ISC"
}