forked from bitbankinc/node-bitbankcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "node-bitbankcc",
"version": "2.0.3",
"description": "node-bitbankcc",
"repository": {
"type": "git",
"url": "https://github.com/bitbankinc/node-bitbankcc"
},
"engines": {
"node": ">= 8.11.0"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"ci:prettier": "npm run format -- --list-different",
"ci:lint": "npm run tslint",
"format": "prettier --config .prettierrc --write \"src/**/*.ts\"",
"tsc": "rm -rf dist; tsc -p tsconfig.development.json",
"tslint": "tslint --project ./tsconfig.json",
"test": "NODE_ENV=test mocha src/**/*.test.ts --require ts-node/register --timeout 10000 --require intelli-espower-loader",
"test:prod": "NODE_ENV=production mocha src/**/*.test.ts --require ts-node/register --timeout 10000 --require intelli-espower-loader",
"prepare": "rm -rf dist; tsc -p tsconfig.json",
"build": "tsc"
},
"ciNode": "8",
"devDependencies": {
"@types/config": "^0.0.32",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.2",
"@types/power-assert": "^1.4.29",
"@types/readline-sync": "^1.4.3",
"config": "^1.29.4",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.10.2",
"readline-sync": "^1.4.9",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.7.1",
"vrsource-tslint-rules": "^5.8.0"
},
"dependencies": {
"axios": "^0.18.0"
}
}