-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "solidity-boilerplate",
"version": "1.0.0",
"description": "A basic boilerplate of a Solidity project",
"main": "index.js",
"scripts": {
"check:unused": "npm-check ",
"check:update": "npm-check -u",
"t": "truffle",
"test": "npm run test:linter && npm run test:truffle",
"test:linter": "solhint 'contracts/**/*.sol'",
"test:truffle": "truffle test",
"testnet": "ganache-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kubide/solidity-Boilerplate.git"
},
"keywords": [
"solidity",
"truffle",
"open-zeppeling"
],
"author": "Kubide",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kubide/solidity-Boilerplate/issues"
},
"homepage": "https://github.com/Kubide/solidity-Boilerplate#readme",
"dependencies": {
"truffle": "^4.0.5",
"zeppelin-solidity": "^1.6.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"ganache-cli": "^6.0.3",
"npm-check": "^5.5.2",
"solhint": "^1.1.10"
}
}