forked from josephtzeng/hocon-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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": "9.4.1",
"node-fetch": "2.6.7"
},
"name": "@pushcorn/hocon-parser",
"version": "1.2.4",
"description": "A HOCON parser",
"main": "lib/parser.js",
"bin": {
"parse-hocon": "./bin/parse-hocon"
},
"scripts": {
"lint": "eslint \"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": ">=14"
},
"keywords": [
"HOCON config parser"
],
"repository": {
"type": "git",
"url": "https://github.com/josephtzeng/hocon-parser.git"
},
"author": "Joseph Tzeng <[email protected]>",
"license": "ISC",
"devDependencies": {
"acorn": "8.8.0",
"coveralls": "3.1.1",
"debug": "4.3.4",
"eslint": "8.23.1",
"jest": "29.0.3"
},
"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"
}