-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "telos-vesting",
"version": "1.0.0",
"description": "A Telos/EOS vesting contract where tokens can be transfered to other accounts who can then only withdraw them after a specified amount of time has passed.",
"scripts": {
"test": "jest --runInBand",
"compile": "make -C build",
"compile_deprecated": "eosio-cpp contract/telosVesting.cpp -o contract/telosVesting.wasm --abigen --contract=telosVesting",
"deploy": "npm run compile && node scripts/deploy.js",
"init": "node scripts/init.js",
"create_actions": "node scripts/create_actions/index.js",
"init_blockchain": "node scripts/init_blockchain/index.js",
"action": "node scripts/action.js",
"table": "node scripts/table.js"
},
"author": "AirdropsDAC",
"license": "MIT",
"eslintConfig": {
"extends": [
"cmichel/node"
]
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"eosjs": "20.0.0",
"eosjs-ecc": "^4.0.4",
"fs-extra": "^7.0.0",
"lodash": "^4.17.5",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.5.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-cmichel": "^1.0.9",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-vue": "^4.7.1",
"jest": "^24.5.0",
"jest-extended": "^0.11.1",
"prettier": "^1.16.4"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
}
}