forked from dhcode/big-json-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
{
"name": "big-json-viewer",
"version": "0.1.7",
"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.js && 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 --out-dir docs --public-url ./ && git add docs",
"watch-docs": "parcel docs-src/index.html --out-dir docs/tmp --no-hmr",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"publish-patch": "npm version patch && npm publish",
"publish-minor": "npm version minor && npm publish",
"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": {
"@types/jest": "^22.2.3",
"babel-polyfill": "^6.26.0",
"cpx": "^1.5.0",
"del-cli": "^1.1.0",
"husky": "^0.14.3",
"jasmine-core": "^2.99.1",
"jest": "^22.4.4",
"parcel-bundler": "^1.12.3",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"ts-jest": "^22.4.6",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {}
}