-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "gridcoin-rpc",
"version": "4.0.1",
"description": "",
"keywords": [
"gridcoin",
"jsonrpc",
"cryptocurrency",
"crypto",
"cryptocoin",
"api"
],
"module": "dist/GridcoinRPC.js",
"main": "dist/GridcoinRPC.js",
"typings": "dist/GridcoinRPC.d.ts",
"files": [
"dist"
],
"author": "Gridcat <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/gridcat/gridcoin-rpc.git"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "tsc && npm run build:docs",
"dev": "tsc -w",
"test": "exit 0",
"test:unit": "jest test/unit/*",
"test:regression": "jest ./test/regression",
"test:watch": "jest --watch",
"_test:prod": "npm run lint && npm run test:unit -- --coverage --no-cache",
"test:prod": "npm run lint",
"build:docs": "ts-node --project tools/tsconfig.json tools/generate-doc.ts",
"deploy:docs": "tools/gh-pages-publish.sh",
"commit": "git-cz",
"typecheck": "tsc --project tsconfig.json --noEmit",
"semantic-release": "semantic-release"
},
"lint-staged": {
"{src,test,tools}/**/*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/bitcoinjs-lib": "^5.0.0",
"@types/chai": "^4.3.4",
"@types/chai-string": "^1.4.2",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"bitcoinjs-lib": "^6.1.0",
"chai": "^4.3.7",
"chai-string": "^1.5.0",
"colors": "^1.4.0",
"commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-config": "^29.3.1",
"lint-staged": "^13.1.0",
"nock": "^13.2.9",
"prompt": "^1.3.0",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"dependencies": {
"camelcase-keys": "7.0.2"
}
}