-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "sulk",
"version": "0.0.7",
"description": "Solidity compilation without the tears",
"main": "dist/sulk.js",
"module": "dist/sulk.mjs",
"jsnext:main": "dist/sulk.mjs",
"bin": "dist/sulk.js",
"directories": {
"doc": "doc",
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukehedger/sulk.git"
},
"keywords": [
"Solidity",
"compile",
"solc"
],
"author": "Luke Hedger (https://www.level-out.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukehedger/sulk/issues"
},
"homepage": "https://github.com/lukehedger/sulk#readme",
"lint-staged": {
"*.js": [
"eslint --fix \"lib/**/*.js\"",
"prettier --write --no-semi --single-quote --trailing-comma=es5",
"git add"
]
},
"pre-commit": {
"run": [
"lint:staged",
"test"
],
"silent": true
},
"scripts": {
"lint:staged": "lint-staged",
"build": "rollup -c",
"build:test": "rollup -c --environment TEST",
"pretest": "npm run build:test",
"release": "npm run build && np --yolo --tag=latest",
"test": "node ./dist/sulk.js --config ./example/config/sulk.config.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"lint-staged": "^4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"rollup": "^0.48.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-butternut": "^0.1.0",
"zeppelin-solidity": "^1.6.0"
},
"dependencies": {
"chalk": "^2.1.0",
"fs-extra": "^4.0.1",
"solc": "^0.4.18",
"yargs": "^8.0.2"
}
}