-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "trufflepig",
"version": "1.1.2",
"description": "Truffle contract artifact loading tool for local development",
"main": "lib/index.js",
"bin": "bin/trufflepig.js",
"files": [
"bin",
"lib",
"Readme.md",
"LICENSE"
],
"scripts": {
"build": "yarn run build:flow && yarn run build:lib",
"build:flow": "flow-copy-source src lib --ignore '__tests__/*.js'",
"build:lib": "flow-remove-types --out-dir lib/ src/",
"dev": "nodemon",
"flow": "flow check",
"lint": "eslint src",
"precommit": "lint-staged",
"prepublish": "yarn run precommit && yarn run build",
"test": "yarn run flow && yarn run lint"
},
"keywords": [
"truffle",
"ethereum",
"smart-contracts",
"development-tool"
],
"contributors": [
"James Lefrère <james@colony.io>",
"Christian Maniewski <chris@colony.io>"
],
"license": "MIT",
"lint-staged": {
"src/{,**/}*.js": [
"lint --fix",
"git add"
]
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^2.3.0",
"chokidar": "^2.0.0",
"cors": "^2.8.4",
"ethers-wallet": "^2.1.8",
"express": "^4.16.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"@colony/eslint-config-colony": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.84.0",
"flow-copy-source": "^1.3.0",
"flow-remove-types": "^1.2.3",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"nodemon": "^1.15.1",
"prettier": "^1.14.3"
},
"peerDependencies": {}
}