-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "@haensl/json-parser",
"version": "1.2.7",
"description": "Minimal JSON file parser.",
"main": "lib/json-parser.cjs.js",
"unpkg": "lib/json-parser.umd.js",
"jsdelivr": "lib/json-parser.umd.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"prepare": "if [ ${NODE_ENV} != 'production' ]; then husky install; fi",
"test": "mocha --recursive src/**/*.test.js",
"test:ci": "mocha --recursive --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/mocha/results.xml src/**/*.test.js",
"tdd": "mocha --watch --recursive src/**/*.test.js",
"lint": "eslint -c ./.eslintrc.json \"!(lib)/**/*.js\"",
"lint:ci": "eslint --format junit -o test-results/eslint/results.xml -c ./.eslintrc.json \"!(lib)/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/json-parser.git"
},
"engines": {
"node": ">=8.3.0"
},
"keywords": [
"JSON",
"parse",
"file",
"promise"
],
"author": {
"name": "HP Dietz",
"email": "h.p.dietz@gmail.com",
"twitter": "@h_p_d",
"url": "https://hpdietz.com"
},
"funding": "https://github.com/sponsors/haensl",
"license": "MIT",
"bugs": {
"url": "https://github.com/haensl/json-parser/issues"
},
"homepage": "https://github.com/haensl/json-parser#readme",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@haensl/eslint-config": "^1.3.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"eslint": "^8.5.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.0.0",
"rollup": "^3.9.1",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"@haensl/pfs": "^2.4.0"
}
}