-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "@haensl/json-transform-stream",
"version": "1.0.5",
"description": "A Node.js Transform stream to wrap JSON data.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint '**/*.js'",
"lint:ci": "ESLINT_USE_FLAT_CONFIG=true eslint --format junit -o test-results/eslint/results.xml '**/*.js'",
"prepare": "if [ ${NODE_ENV} != 'production' ]; then husky; fi",
"test": "jest --runInBand --no-cache --colors",
"test:ci": "jest --runInBand --no-cache --ci --reporters='default' --reporters='jest-junit'",
"tdd": "jest --colors --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/json-transform-stream.git"
},
"keywords": [
"transform",
"stream",
"json"
],
"author": {
"name": "HP Dietz",
"url": "https://hpdietz.com",
"email": "[email protected]",
"github": "https://github.com/haensl"
},
"funding": "https://github.com/sponsors/haensl",
"license": "MIT",
"bugs": {
"url": "https://github.com/haensl/json-transform-stream/issues"
},
"homepage": "https://github.com/haensl/json-transform-stream#readme",
"jest": {
"testPathIgnorePatterns": [
"package\\.test"
]
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "results.xml",
"suitName": "json-transform-stream unit tests"
},
"devDependencies": {
"@haensl/eslint-config": "^2.0.0",
"eslint": "^9.13.0",
"eslint-formatter-junit": "^8.40.0",
"husky": "^9.1.6",
"jest": "^29.3.1",
"jest-junit": "^16.0.0"
}
}