-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "tokyo-solidity-template",
"version": "1.1.17",
"description": "Make solidity contract based on user input",
"main": "dist/index.js",
"bin": "bin.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && babel src -d dist",
"test": "mocha --require babel-polyfill --require babel-register --reporter spec||exit 0",
"test:verbose": "VERBOSE=true npm run test",
"test:watch": "VERBOSE=true mocha --require babel-polyfill --require babel-register --watch",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint --fix {src,test,static}/**/*.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Onther-Tech/tokyo-solidity-template.git"
},
"keywords": [
"tokyo"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Onther-Tech/tokyo-solidity-template/issues"
},
"homepage": "https://github.com/Onther-Tech/tokyo-solidity-template#readme",
"dependencies": {
"bignumber.js": "^5.0.0",
"commander": "^2.14.1",
"find-up": "^2.1.0",
"lodash": "^4.17.10",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^4.0.0",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"ncp": "^2.0.0",
"postinstall-build": "^5.0.1",
"serialize-javascript": "^1.4.0",
"tokyo-reusable-crowdsale": "^1.1.16",
"tokyo-schema": "^1.1.5",
"tokyo-test-data": "^1.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"clean-webpack-plugin": "^0.1.18",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"mocha": "^5.0.3",
"post-commit": "^0.0.1",
"rimraf": "^2.6.2",
"truffle-hdwallet-provider": "https://github.com/cemozerr/truffle-hdwallet-provider/tarball/master"
},
"directories": {
"test": "test"
},
"post-commit": [
"build"
]
}