-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"dependencies": {
"commander": "12.1.0",
"rock-req": "5.1.3"
},
"name": "@pushcorn/hocon-parser",
"version": "1.3.1",
"description": "A HOCON parser",
"main": "lib/parser.js",
"bin": {
"parse-hocon": "./bin/parse-hocon"
},
"scripts": {
"lint": "eslint -c .eslint.config.cjs \"lib/*.js\" \"lib/**/*.js\" \"tests/*.js\" \"tests/**/*.js\"",
"test": "jest --verbose --coverage",
"test:tag": "jest --verbose",
"test:update": "jest --verbose --coverage --updateSnapshot",
"test:watch": "jest --coverage --verbose --watch",
"coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=18"
},
"keywords": [
"HOCON config parser"
],
"repository": {
"type": "git",
"url": "https://github.com/josephtzeng/hocon-parser.git"
},
"author": "Joseph Tzeng <[email protected]>",
"license": "ISC",
"devDependencies": {
"coveralls-next": "4.2.1",
"debug": "4.3.5",
"eslint": "9.5.0",
"globals": "15.6.0",
"jest": "29.7.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./tests/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/resources/",
"<rootDir>/tests/setup/core/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/resources/",
"<rootDir>/tests/setup/core/"
],
"testMatch": [
"**/tests/*/**/*.js"
]
},
"bugs": {
"url": "https://github.com/josephtzeng/hocon-parser/issues"
},
"homepage": "https://github.com/josephtzeng/hocon-parser"
}