forked from MyEtherWallet/ethereum-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 996 Bytes
/
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
{
"name": "ethereum-lists",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MyEtherWallet/ethereum-lists.git"
},
"scripts": {
"lint": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write '{src,dist}/**/*.json' '!{dist}/**/**/*.min.json' './{js,json}' '!./node_modules'",
"test:checkToken": "node checkToken.js",
"test:checkContract": "node checkContract.js",
"test": "npm run test:checkToken; npm run test:checkContract",
"compile": "node compile.js",
"precommit": "pretty-quick --staged"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/MyEtherWallet/ethereum-lists/issues"
},
"homepage": "https://github.com/MyEtherWallet/ethereum-lists#readme",
"devDependencies": {
"eslint-plugin-json": "^1.2.1",
"husky": "^0.14.3",
"pretty-quick": "^1.6.0",
"web3": "^1.0.0-beta.36"
},
"dependencies": {
"prettier": "^1.14.2",
"validate.js": "^0.13.1"
}
}