-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.35 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.35 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
{
"name": "@makerdao/dai",
"version": "0.7.1",
"contributors": [
"Wouter Kampmann <wouter@makerdao.com>",
"Sean Brennan <sean@makerdao.com>",
"Tyler Sorensen <tyler@makerdao.com>",
"Ethan Bennett <ethan@makerdao.com>",
"Lawrence Wang <lawrence@makerdao.com>",
"Joshua Levine <joshua@makerdao.com>",
"Michael Elliot <mike@makerdao.com>"
],
"description": "JavaScript library for interacting with the Dai Stablecoin System.",
"license": "MIT",
"keywords": [
"makerdao",
"mkr",
"dai",
"cdp",
"eth",
"margin"
],
"bugs": {
"url": "https://github.com/makerdao/dai.js/issues",
"email": "wouter@makerdao.com"
},
"repository": {
"type": "git",
"url": "https://github.com/makerdao/dai.js.git"
},
"module": "src/index.js",
"main": "src/index.js",
"scripts": {
"build:frontend": "./scripts/build-frontend.sh",
"build:backend": "./scripts/build-backend.sh",
"build:backend:watch": "sane ./scripts/build-backend.sh src --wait=10",
"coverage": "./testchain/scripts/with-deployed-system --ci jest --runInBand --coverage",
"lint": "eslint web src test",
"precommit": "lint-staged",
"prepush": "npm run test",
"prettier": "prettier --write --single-quote '{src,web,test,contracts}/**/*.js'",
"test": "./testchain/scripts/with-deployed-system --ci jest --runInBand",
"test:watch": "./testchain/scripts/with-deployed-system jest --watch --runInBand",
"test:logs": "tail -f ganache.out | grep -v 'eth_blockNumber'",
"test:net": "./testchain/scripts/with-deployed-system"
},
"lint-staged": {
"./{src,web,test,contracts}/**/*.js": [
"prettier --single-quote --write",
"git add",
"eslint web src test"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"copyfiles": "^2.0.0",
"eslint": "^4.19.1",
"eslint-loader": "^1.9.0",
"ganache-cli": "^6.0.3",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1",
"sane": "^3.0.0",
"solc": "^0.4.23",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.13.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bignumber.js": "^7.2.1",
"bunyan": "^1.8.12",
"chalk": "^2.4.1",
"debug": "^3.1.0",
"ethers": "^3.0.15",
"ethers-web3-bridge": "0.0.1",
"eventemitter2": "^5.0.1",
"invariant": "^2.2.2",
"lodash": "^4.17.10",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.1",
"lodash.times": "^4.3.2",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0",
"promise-props": "^1.0.0",
"toposort": "^2.0.2",
"web3": "^0.20.6",
"web3-provider-engine": "makerdao/provider-engine#remove-provider-dist"
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"globalSetup": "<rootDir>/test/setup-global.js",
"roots": [
"src",
"test"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/setup-test.js"
}
}