-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.33 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
{
"name": "@robinthomas/erasure-sdk",
"version": "1.0.22",
"description": "Erasure SDK",
"main": "dist/index.js",
"homepage": "https://github.com/robin-thomas/erasure-sdk#readme",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --watch",
"setenv": "node --require esm -e 'require(\"./test/deploy\").setenv()'",
"test": "NODE_ENV=test mocha --require esm test/index.js",
"babel-test": "NODE_ENV=test mocha --require @babel/register test/index.js",
"coverage": "nyc npm run babel-test",
"doc:generate": "jsdoc src/* --destination erasure-docs -c jsdoc.json",
"doc:deploy": "npm run doc:generate && now ./erasure-docs",
"deploy": "npm run build && npm publish --access public",
"format": "prettier -c 'test/**/*.js' 'src/**/*.js' --config .prettierrc",
"format-write": "prettier -c 'test/**/*.js' 'src/**/*.js' --config .prettierrc --write"
},
"author": "Robin Thomas <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/robin-thomas/erasure-sdk.git"
},
"bugs": {
"url": "https://github.com/robin-thomas/erasure-sdk/issues"
},
"devDependencies": {
"3box": "^1.16.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@erasure/abis": "^1.3.16",
"@erasure/crypto-ipfs": "^1.2.4",
"babel-loader": "^8.0.6",
"bip39": "^3.0.2",
"bs58": "^4.0.1",
"docdash": "^1.1.1",
"esm": "^3.2.25",
"ethereumjs-util": "^6.2.0",
"ethereumjs-wallet": "^0.6.3",
"ethers": "^4.0.43",
"ganache-cli": "^6.8.2",
"go-ipfs-dep": "^0.4.23",
"husky": "^3.0.5",
"ipfs-http-client": "^41.0.0",
"ipfsd-ctl": "^2.1.0",
"jsdoc": "^3.6.3",
"lint-staged": "^9.2.5",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.18.2",
"web3": "^1.2.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md}": [
"prettier --write",
"git add"
]
},
"mocha": {
"bail": true,
"exit": true,
"timeout": 1200000
}
}