-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "@dallaal/node-coinex",
"version": "0.1.0",
"description": "This is template for dallaal typescript packages",
"main": "./dist/index.js",
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dallaal/node-coinex.git"
},
"author": "Dallaal",
"license": "MIT",
"bugs": {
"url": "https://github.com/dallaal/node-coinex/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/dallaal/node-coinex#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-sonarjs": "^0.10.0",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0",
"jest-html-reporters": "^2.1.2",
"standard-version": "^9.3.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.21.5",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/crypto-js": "^4.0.2",
"@types/qs": "^6.9.7",
"axios": "^0.21.1",
"qs": "^6.5.2"
}
}