-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "snippet-erc20",
"version": "0.0.1",
"description": "Snippet of ERC20 usage",
"main": "",
"scripts": {
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/mezrin/snippet-erc20-js.git"
},
"author": "Victor Mezrin <[email protected]>",
"license": "MIT",
"keywords": [
"myproject",
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"snippet"
],
"dependencies": {
"babel": "^6.23.0",
"babel-eslint": "^7.2.3",
"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",
"base-58": "0.0.1",
"bignumber.js": "^4.1.0",
"bluebird": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"lint-staged": "^3.2.1",
"mocha-lcov-reporter": "^1.3.0",
"web3": "0.20.0"
}
}