-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "hibonutil-wrapper",
"version": "0.1.4",
"description": "This is a NPM module for working with HiBON format",
"main": "./build/index.js",
"files": [
"src/",
"build/"
],
"types": "./build/types/index.d.ts",
"type": "module",
"scripts": {
"test": "bash autotest.sh",
"lint": "eslint src/ --ext .ts",
"lint-deps": "depcheck --skip-missing --ignore-bin-package",
"build": "tsc && node build/index.js",
"start": "tsc && node build/start.js",
"dev-build": "npm run lint && npm run build",
"dev-start": "npm run lint && npm run start"
},
"exports": {
".": "./build/index.js"
},
"keywords": [
"hibonutil-wrapper",
"hibonutil",
"HiBON",
"tagion"
],
"author": "Ivan Bilan",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.11",
"@types/node": "^20.5.7",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.5.0",
"axios": "^1.6.5",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-deps": "^0.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tagion/npm-hibonutil"
},
"bugs": {
"url": "https://github.com/tagion/npm-hibonutil/issues"
},
"homepage": "https://github.com/tagion/npm-hibonutil/#readme",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yargs": "^17.7.2"
}
}