-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 KB
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
{
"name": "big-json-viewer",
"version": "0.2.2",
"description": "JavaScript Library to view big JSON structures.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean-build": "del-cli dist && node tools/build-inline-worker.mjs && tsc && parcel build src/browser-api.ts",
"build": "npm run clean-build && cpx styles/default.css dist",
"prepack": "npm run build",
"build-docs": "del-cli docs && parcel build docs-src/index.html --dist-dir docs --public-url ./ && git add docs",
"watch-docs": "parcel docs-src/index.html --dist-dir docs/tmp --no-hmr",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"precommit": "npm run build-docs && pretty-quick --staged"
},
"keywords": [
"JSON",
"JavaScript",
"TypeScript",
"big",
"JSON",
"viewer"
],
"author": "Dominik Herbst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dhcode/big-json-viewer.git"
},
"devDependencies": {
"@parcel/core": "^2.16.1",
"@types/jest": "^30.0.0",
"cpx": "^1.5.0",
"del-cli": "^7.0.0",
"husky": "^9.1.7",
"jasmine-core": "^5.12.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"parcel": "^2.16.1",
"prettier": "^3.7.1",
"pretty-quick": "^4.2.2",
"ts-jest": "^29.4.5",
"tslint": "^6.1.3",
"typescript": "^5.9.3"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://localhost"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"targets": {
"types": false,
"main": false
}
}