-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ntacorpnumberapimanager",
"version": "1.1.0",
"description": "国税庁法人番号APIリクエストマネージャー",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/@types/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"eslint": "eslint --cache --ext .ts .",
"eslint:fix": "eslint --cache --ext .ts . --fix",
"prettier": "prettier --write --end-of-line crlf .",
"test": "run-s build test:main",
"test:main": "mocha ./tests/**/*.js",
"ci": "run-p eslint coverage",
"coverage": "c8 npm test",
"build": "tsc",
"rm": "run-script-os",
"rm:win32": "rmdir /s /q dist",
"rm:default": "rm -rf dist/",
"postbuild": "node ./add-js-extension.mjs dist/",
"build:release": "run-p build:release:*",
"build:release:cjs": "tsc -p tsconfig.cjs.json",
"build:release:esm": "tsc -p tsconfig.esm.json",
"postbuild:release": "node ./add-js-extension.mjs dist/esm/",
"prepack": "run-s rm build:release"
},
"repository": {
"url": "https://github.com/MeigetsuNet/NTACorpNumberAPIManager.git"
},
"author": "Meigetsu/Meigetsu Net",
"license": "SEE LICENSE IN https://license.meigetsu.jp/?id=0794FD140AD3450BB4A5A44459335089",
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/mocha": "^10.0.1",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"assert": "^2.1.0",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"run-script-os": "^1.1.6",
"typescript": "^5.2.2"
},
"dependencies": {
"ntacorpnumberapimanager-xmlparser": "^1.0.0-patch01"
}
}