forked from bitrinjani/bitflyer-fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@bitr/bitflyer-fx",
"version": "1.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "npm run cov && cat ./coverage/lcov.info | coveralls",
"jest": "jest --runInBand",
"cov": "jest --runInBand --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"r2",
"plugin",
"bitcoin",
"arbitrage"
],
"repository": "https://github.com/bitrinjani/bitflyer-fx",
"author": "bitrinjani <[email protected]>",
"dependencies": {
"@bitr/castable": "^1.0.2",
"coveralls": "^3.0.0",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3",
"pino": "^4.10.2"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/lodash": "^4.14.91",
"@types/nock": "^9.1.1",
"@types/node": "^8.0.46",
"jest": "^21.0.3",
"nock": "^9.1.6",
"rimraf": "^2.6.2",
"ts-jest": "^21.0.0",
"ts-node": "3",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "^2.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"mapCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/*.d.ts",
"!**/types.ts",
"!scripts/*.ts"
]
}
}