-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
{
"name": "FrozenWallet",
"version": "1.0.0",
"description": "The Frozen Wallet for ICO tokens by ALIS project.",
"main": "truffle.js",
"repository": {
"type": "git",
"url": "https://github.com/AlisProject/FrozenWallet.git"
},
"homepage": "https://github.com/AlisProject/FrozenWallet",
"author": "sot528 <sot528@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"ethereumjs-testrpc": "^4.0.1",
"fs": "^0.0.1-security",
"moment": "^2.19.1",
"solgraph": "^0.2.6",
"solium": "^0.5.4",
"truffle": "^3.4.7"
},
"scripts": {
"test": "scripts/test.sh",
"test:all": "scripts/test.sh ./test/*.js ./test/lib/testExecutionAfterRequirementsChanged.js",
"debug": "scripts/debug.sh",
"lint:sol": "yarn run solium -- --dir ./contracts",
"lint": "yarn run eslint . -- --fix && yarn lint:sol",
"compile": "rm -rf ./build/* && truffle compile",
"clean": "rm -rf ./build/* && yarn truffle networks --clean",
"deploy": "yarn run clean && yarn truffle compile && truffle deploy --network development"
}
}