-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@legend-of-ether/sol",
"version": "0.0.0-development",
"description": "Legend of ether",
"main": "build/contracts/LegendOfEther.json",
"scripts": {
"compile": "rimraf build && truffle compile --verbose",
"test": "truffle test",
"migrate": "truffle migrate",
"ganache": "ganache-cli",
"ropsten": "rimraf build && npm run migrate -- --network=ropsten",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run ropsten"
},
"repository": {
"type": "git",
"url": "git+https://github.com/legend-of-ether/sol.git"
},
"keywords": [],
"author": "walter Zalazar",
"license": "MIT",
"bugs": {
"url": "https://github.com/legend-of-ether/issues"
},
"homepage": "https://github.com/legend-of-ether/readme",
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"darq-truffle": "^4.1.7-roderik.3",
"dotenv": "5.0.1",
"ganache-cli": "6.1.0",
"rimraf": "^2.6.2",
"semantic-release": "15.4.1",
"truffle": "4.1.8",
"truffle-hdwallet-provider": "0.0.5"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}