-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "@makerdao/dai-plugin-eth2dai-instant",
"version": "0.1.4",
"license": "MIT",
"description": "A dai.js plugin for atomic trading on maker otc",
"repository": {
"type": "git",
"url": "https://github.com/makerdao/dai-plugin-eth2dai-instant.git"
},
"main": "./dist/src/index.js",
"scripts": {
"build": "./scripts/build.sh",
"precommit": "lint-staged",
"test": "./scripts/build.sh && ./scripts/run-testchain.sh -s default -u --ci jest --runInBand --config ./test/config/jestDefaultConfig.json",
"test:net": "./scripts/run-testchain.sh -s default -u"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@makerdao/dai": "^0.18.6",
"@makerdao/testchain": "^0.2.14",
"@makerdao/dai-plugin-eth2dai-instant": "0.1.4",
"assert": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"ethers": "^3.0.15",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0"
},
"dependencies": {
"@makerdao/currency": "^0.9.5",
"@makerdao/services-core": "^0.9.8",
"lodash.values": "^4.3.0"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --single-quote",
"git add"
]
}
}