generated from parzh/package-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.85 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": "@iso4217/json",
"description": "ISO-4217 as a JSON",
"author": "Dima Parzhitsky <[email protected]>",
"version": "20240625.1.11",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/parzh/iso4217.git"
},
"bugs": {
"url": "https://github.com/parzh/iso4217/issues"
},
"homepage": "https://github.com/parzh/iso4217#readme",
"files": [
"/**/*.js",
"!/**/*.type.js",
"/**/*.js.map",
"!/**/*.type.js.map",
"/**/*.d.ts",
"/**/*.d.ts.map",
"/data.json",
"/README.md"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"_ts-node": "export NODE_OPTIONS=\"--unhandled-rejections=strict\"; ts-node --project tsconfig.json",
"dev": "tsc --project ./tsconfig.json --watch",
"build-data-file": "npm run _ts-node -- ./build-data-file.impl.ts",
"build-data-file-if-needed": "if [ ! -f \"./data.json\" ]; then npm run build-data-file; fi",
"build:only": "tsc --project ./tsconfig.build.json",
"prebuild": "npm run build-data-file-if-needed",
"build": "npm run build:only",
"precompose-version-number:ci": "npm run build-data-file-if-needed",
"compose-version-number:ci": "npm run _ts-node -- ./compose-version-number.impl.ts",
"assert-package-and-data-file-versions-match": "npm run _ts-node -- ./assert-package-and-data-file-versions-match.impl.ts",
"prepublishOnly": "npm run build && npm run assert-package-and-data-file-versions-match",
"postinstall": "node --unhandled-rejections=strict postinstall.js"
},
"devDependencies": {
"@types/node": "16.9.6",
"@types/xml2json": "0.11.4",
"ts-node": "10.2.1",
"typescript": "5.5.3",
"xml2json": "0.11.2"
},
"peerDependencies": {
"typescript": ">=1.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}