forked from jorisbontje/maker-otc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 973 Bytes
/
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
{
"name": "Maker-OTC",
"scripts": {
"deploy": "dapple run scripts/deploy_private.ds",
"build": "dapple build --template meteor --no-deploy-data",
"blockchain": "./scripts/blockchain/start-blockchain.sh",
"attach": "geth attach ipc://$PWD/scripts/blockchain/tmp/geth.ipc",
"test": "standard"
},
"devDependencies": {
"babel-eslint": "6.0.0",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"gulp-sync": "^0.1.4",
"meteor-build-client": "^0.3.0",
"standard": "6.0.7"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"Meteor",
"Session",
"Template",
"EthTools",
"Dapple",
"BigNumber",
"web3",
"Spacebars",
"Offers",
"Status",
"BASE_CURRENCY",
"Tokens",
"Transactions",
"$",
"_"
],
"ignore": [
"dapple_packages/**",
"frontent/.meteor/**",
"frontend/packages/**",
"scripts/**"
]
}
}