forked from bepronetwork/bepro-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·110 lines (110 loc) · 3.78 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
104
105
106
107
108
109
110
{
"name": "bepro-js",
"version": "1.2.8",
"description": "",
"main": "index.js",
"engines": {
"node": "14.17.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/betprotocol/bepro-js.git"
},
"scripts": {
"pretest": "npm run build && truffle compile && truffle migrate --network development",
"test": "./node_modules/.bin/mocha --exit ./tests/index.js --timeout 3000000 --require babel-core/register --require babel-polyfill --reporter mocha-multi-reporters",
"test:truffle": "truffle test --network development ./tests/contracts/erc20TokenLock-truffle.js",
"index": "babel-node ./index.js --presets es2015,stage-2",
"build": "npm run compile && babel ./src --out-dir lib --copy-files -d ./build",
"compile": "truffle compile",
"clean:contracts": "rimraf build/contracts && truffle compile",
"docs": "npm run build && npm run jsdoc:build && npm run jsdoc:serve",
"jsdoc:build": "jsdoc -t ./node_modules/better-docs src -r -c docs-src/jsdoc.json",
"jsdoc:serve": "http-server ./docs/ -o",
"lint": "eslint ./src --cache",
"lint:fix": "eslint ./src --fix",
"ganache:start": "ganache-cli -p 8545 -q",
"watch": "onchange 'src/**/*.js' -- npm run build",
"install": "( [ ! -d ./build ] && [ ! -f ./built ] && echo \"\" > ./built && npm install . && npm run build ) || echo \"Already built\""
},
"pre-commit": [
"lint:fix",
"build",
"jsdoc:build"
],
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"abi-decoder": "^1.2.0",
"accounting": "^0.4.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"big-number": "^2.0.0",
"bn.js": "^5.1.3",
"chai": "^4.2.0",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.9.4",
"delay": "^4.4.0",
"dotenv": "^8.2.0",
"execution-time": "^1.4.1",
"express": "^4.17.1",
"fs": "0.0.1-security",
"ipfs-http-client": "^50.0.0",
"jsdoc-template": "^1.2.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
"moment": "^2.21.0",
"mongoose": "^5.9.5",
"randomhex": "^0.1.5",
"web3": "^1.3.6"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"better-docs": "^2.3.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "3.1.0",
"ganache-cli": "^6.12.2",
"gitbook-cli": "^2.3.2",
"http-server": "^0.12.3",
"jsdoc": "^3.6.6",
"jsdoc-babel": "^0.5.0",
"jsdoc-md": "^8.0.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha-multi-reporters": "^1.5.1",
"onchange": "^2.4.0",
"pre-commit": "^1.2.2",
"should": "^7.1.0",
"supertest": "^1.0.0",
"truffle": "5.1.7"
},
"babel": {
"presets": [
"env",
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime",
"transform-remove-console"
],
"sourceMaps": true,
"retainLines": true
},
"author": "",
"license": "ISC"
}