This repository has been archived by the owner on Feb 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
{
"name": "chainpoint-client",
"version": "0.4.3",
"description": "Chainpoint API client",
"main": "dist/bundle.js",
"author": "Jason Bukowski <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/chainpoint/chainpoint-client-js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"lint": "eslint lib/**/*.js *.js",
"test": "CHAINPOINT_CORES=http://35.245.211.97 npm run test:lint && nyc mocha --reporter spec -r esm 'tests/!(e2e)*-test.js'",
"test:lint": "npm run lint",
"test:unit": "CHAINPOINT_CORES=http://35.245.211.97 nyc mocha --reporter spec -r esm 'tests/!(e2e)*-test.js'",
"test:watch": "CHAINPOINT_CORES=http://35.245.211.97 nyc mocha --reporter spec -r esm --watch 'tests/!(e2e)*-test.js'",
"test:e2e": "npm run webpack && mocha --reporter spec -r esm tests/e2e-test.js",
"build": "webpack",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"babel-preset-minify": "^0.5.0",
"bfile": "^0.2.1",
"chai": "^4.2.0",
"chainpoint-binary": "^5.0.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"esm": "^3.2.22",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.1.3",
"nock": "^10.0.6",
"node-libs-browser": "^2.1.0",
"npm": "^6.5.0",
"nyc": "^14.0.0",
"prettier": "^1.17.0",
"sinon": "^7.3.2",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@ungap/url-search-params": "^0.1.2",
"abortcontroller-polyfill": "^1.3.0",
"bcfg": "^0.1.6",
"chainpoint-parse": "^4.0.0",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"uuid": "^3.3.2",
"uuid-validate": "^0.0.2",
"validator": "^9.1.2"
}
}