forked from bitbankinc/node-bitbankcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 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
{
"name": "node-bitbankcc",
"version": "2.3.0",
"description": "node-bitbankcc",
"repository": {
"type": "git",
"url": "https://github.com/bitbankinc/node-bitbankcc"
},
"engines": {
"node": ">= 12.0.0"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist; tsc -p tsconfig.json",
"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": "npm run build"
},
"ciNode": "8",
"devDependencies": {
"@types/config": "0.0.34",
"@types/mocha": "5.2.7",
"@types/node": "^12.6.8",
"@types/power-assert": "1.5.0",
"@types/readline-sync": "1.4.3",
"config": "3.2.2",
"intelli-espower-loader": "1.0.1",
"mocha": "6.2.0",
"power-assert": "1.6.1",
"prettier": "1.18.2",
"readline-sync": "1.4.9",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.5.3",
"vrsource-tslint-rules": "6.0.0"
},
"dependencies": {
"axios": "^0.21.4"
}
}