-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.74 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 2.74 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "etherui-deploy",
"version": "1.0.1",
"main": "index.js",
"author": "Konstantin Viktorov <support@etherui.net>",
"bugs": {
"url": "https://github.com/etherui/etherui-deploy/issues"
},
"description": "A simple way create new UI for Smart contract on via etherui.net on truffle environment.",
"dependencies": {
"babel-eslint": "^8.2.3",
"chalk": "^2.4.1",
"clear": "0.0.1",
"clui": "^0.3.6",
"configstore": "^3.1.2",
"figlet": "^1.2.0",
"inquirer": "^5.2.0",
"lodash": "^4.17.19",
"minimist": "^1.2.5",
"restler": "^3.4.0",
"touch": "^3.1.0"
},
"baseUrl": "https://etherui.net",
"APIVersion": "v1",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"node": true,
"mocha": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"import/no-unresolved": 2,
"comma-dangle": [
2,
"always-multiline"
],
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"no-console": 0,
"max-len": 0,
"prefer-template": 2,
"no-use-before-define": 0,
"newline-per-chained-call": 0,
"arrow-body-style": [
2,
"always"
]
}
},
"homepage": "https://github.com/etherui/etherui-deploy#readme",
"keywords": [
"ethereum",
"ether",
"rpc",
"ui",
"ethjs",
"abi",
"cli",
"smart-contract",
"smartcontract",
"user-interface",
"userinterface",
"deployment"
],
"license": "MIT",
"lint-staged": {
"lint:eslint": "*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/etherui/etherui-deploy.git"
},
"files": [
"lib"
],
"bin": {
"etheruideploy": "./index.js"
},
"engines": {
"node": ">=6.5.0",
"npm": ">=3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"pretest": "npm run lint"
},
"devDependencies": {
"bignumber.js": "3.0.1",
"bn.js": "4.11.6",
"chai": "3.5.0",
"check-es3-syntax-cli": "0.1.3",
"coveralls": "^3.1.0",
"cross-env": "1.0.7",
"eslint": "4.18.2",
"eslint-config-airbnb": "9.0.1",
"eslint-import-resolver-webpack": "0.2.4",
"eslint-plugin-import": "1.8.0",
"eslint-plugin-jsx-a11y": "1.2.0",
"eslint-plugin-react": "5.1.1",
"eventsource-polyfill": "0.9.6",
"istanbul": "0.4.5",
"json-loader": "0.5.4",
"lint-staged": "1.0.1",
"mocha": "^8.1.3",
"pre-commit": "1.1.3",
"rimraf": "^3.0.2"
}
}