-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
64 lines (64 loc) · 2.13 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
{
"name": "jsonic",
"version": "2.15.2",
"main": "dist/jsonic.js",
"type": "commonjs",
"types": "dist/jsonic.d.ts",
"description": "A dynamic JSON parser that isn't strict and can be customized.",
"homepage": "https://github.com/rjrodger/jsonic",
"keywords": [
"pattern",
"matcher",
"object",
"property",
"json"
],
"author": "Richard Rodger (http://richardrodger.com)",
"repository": {
"type": "git",
"url": "git://github.com/rjrodger/jsonic.git"
},
"scripts": {
"test": "jest --coverage",
"test-open": "jest --coverage --detectOpenHandles",
"test-pure": "jest --coverage --config jest.config.pure.js",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"test-view": "open coverage/lcov-report/index.html",
"watch": "tsc -w -d",
"build": "tsc -d",
"diagrams": "docs-src/.vuepress/diagrams/generate.sh",
"coveralls": "lab -s -P test -r lcov | coveralls",
"prettier": "prettier --write --no-semi --single-quote src/*.ts test/*.js",
"docs-dev": "vuepress dev docs-src",
"docs-build": "vuepress build docs-src",
"clean": "rm -rf node_modules dist yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run repo-tag && npm publish --registry https://registry.npmjs.org --access=public"
},
"license": "MIT",
"files": [
"dist",
"bin",
"LICENSE"
],
"bin": {
"jsonic": "bin/jsonic"
},
"exports": {
".": "./dist/jsonic.js",
"./debug": "./dist/debug.js"
},
"devDependencies": {
"@jsonic/directive": "^0.12.0",
"@types/jest": "^29.5.14",
"es-jest": "^2.1.0",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"@jsonic/csv": "^0.5.0"
}
}