-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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
{
"name": "creditor-reference",
"version": "0.1.6",
"description": "creditor reference code builder and verification",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"scripts": {
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build",
"test": "nyc mocha",
"coverage": "nyc mocha --reporter mocha-junit-reporter"
},
"engines": {
"node": ">=8.10.0"
},
"mocha": {
"exit": true,
"extension": [
"ts",
"js"
],
"recursive": true,
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporters": [
"spec",
"mocha-junit-reporter"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mharj/creditor-reference.git"
},
"keywords": [
"creditor",
"reference",
"bill"
],
"files": [
"dist"
],
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"text",
"lcovonly",
"cobertura"
],
"all": true,
"require": [
"ts-node/register"
]
},
"author": "mharj",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mharj/creditor-reference/issues"
},
"homepage": "https://github.com/mharj/creditor-reference#readme",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^16.18.96",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.5"
}
}