-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "cryptoxmas-contracts",
"version": "0.1.0",
"license": "MIT",
"main": "index.js",
"dependencies": {
"axios": "^0.18.0",
"csv-parse": "^4.1.0",
"ens-builder": "^2.0.0"
},
"scripts": {
"test": "mocha --recursive --require babel-register test -t 10000",
"lint": "eslint test && solium -d contracts",
"build": "waffle .waffle.json",
"deploy": "babel-node scripts/deploy.js",
"clean": "rm -fr ./node_modules && rm -fr ./build",
"mint:tokens": "babel-node scripts/mintTokens.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "4.19.1",
"eslint-plugin-import": "^2.13.0",
"ethereum-waffle": "^1.0.0",
"ganache-core": "^2.2.1",
"mocha": "^5.2.0",
"openzeppelin-solidity": "^2.0.0",
"solium": "^1.1.8"
}
}