-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "precise-proofs",
"version": "1.0.3",
"description": "Precise Proofs validation for javascript(https://github.com/centrifuge/precise-proofs)",
"main": "dist/precise-proofs.cjs.js",
"module": "dist/precise-proof.esm.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"build:commonjs": "rollup ./src/index.js --file ./lib/precise-proof.js --format cjs",
"build:es": "rollup ./src/index.js --file ./es/precise-proof.js --format es",
"build:umd": "rollup ./src/index.js --file ./dist/precise-proof.js --format umd npm install babel-preset-env --save-dev'",
"build": "rollup -c",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CentrifugeInc/precise-proofs-js.git"
},
"keywords": [
"precise",
"proofs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CentrifugeInc/precise-proofs-js/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/CentrifugeInc/precise-proofs-js#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babelrc-rollup": "^3.0.0",
"jest": "^23.4.2",
"protobufjs": "^5.0.3",
"regenerator-runtime": "^0.12.0",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"standard-version": "^4.4.0"
},
"dependencies": {
"bytebuffer": "^5.0.1",
"js-sha256": "^0.9.0",
"js-sha3": "^0.7.0"
}
}