-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@pefish/js-node-assist",
"version": "2.1.1",
"description": "assistance tool of node",
"keywords": [
"assist",
"node",
"tool"
],
"homepage": "https://github.com/pefish/js-node-assist",
"bugs": "https://github.com/pefish/js-node-assist/issues",
"license": "MIT",
"author": "pefish",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/pefish/js-node-assist"
},
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "rm -rf lib && rm -rf types && tsc",
"test": "mocha --require ts-node/register src/**/*.test.ts",
"t": "mocha --require ts-node/register",
"doc": "rm -rf docs && jsdoc src -r -d docs",
"prepublish": "npm run build && npm run test"
},
"dependencies": {
"bignumber.js": "^9.1.2"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.6.3",
"mocha": "^10.8.2"
}
}