-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "kittycoin-club",
"version": "0.3.0",
"description": "Donation site for cats in foster care built on smart contracts",
"author": "Nathan Glover <[email protected]>",
"license": "MIT",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"kittycoin",
"donations"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fluffycatware/kittycoin-club.git"
},
"bugs": {
"url": "https://github.com/fluffycatware/kittycoin-club/issues"
},
"homepage": "https://github.com/fluffycatware/kittycoin-club",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"bignumber.js": "^6.0.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-traverser": "^1.5.2",
"ethereumjs-testrpc": "^6.0.1",
"ethereumjs-util": "^5.2.0",
"jshint": "^2.9.5",
"lite-server": "^2.3.0",
"mocha-lcov-reporter": "^1.3.0",
"random-bytes": "^1.0.0",
"solc": "^0.4.24",
"solidity-parser": "^0.4.0"
},
"dependencies": {
"dotenv": "^5.0.1",
"ethjs-abi": "^0.2.1",
"jsonfile": "^4.0.0",
"snyk": "^1.290.1",
"solidity-coverage": "^0.4.14",
"solium": "^1.1.7",
"truffle": "^4.1.8",
"truffle-hdwallet-provider": "0.0.3",
"web3": "^0.20.6",
"zeppelin-solidity": "^1.9.0"
},
"directories": {
"test": "test"
},
"scripts": {
"dev": "lite-server",
"test": "scripts/test.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"compile": "truffle compile",
"console": "truffle console",
"migrate": "truffle migrate --reset",
"coverage": "scripts/coverage.sh",
"deploy": "scripts/gh-pages.sh",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}