-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "0xorderbuilder",
"version": "1.1.0",
"description": "Llibrary for building orders to use the 0x protocol",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf lib",
"test": "npm run build && nyc --require ts-node/register --require source-map-support/register mocha test/**/*.test.ts **/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmadeusRelay/0xOrderBuilder.git"
},
"keywords": [
"ethereum",
"utilties",
"0xRelayer",
"AmadeusRelayer"
],
"author": "Fábio Cesso <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/AmadeusRelay/0xOrderBuilder/issues"
},
"homepage": "https://github.com/AmadeusRelay/0xOrderBuilder#readme",
"dependencies": {
"0x.js": "0.33.6",
"@0xproject/connect": "^0.6.8",
"@0xproject/types": "^0.5.0",
"axios": "^0.18.0",
"ethereumjs-util": "^5.1.2",
"moment": "^2.22.0",
"rxjs": "^5.5.8"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"rimraf": "^2.6.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"minimist": ">=1.2.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/lib/**",
"test/*",
"src/index.ts",
"src/models/*",
"src/relayer/*"
],
"reporter": [
"text"
],
"all": true
}
}