|
1 | 1 | { |
2 | 2 | "name": "@jsonic/jsonc", |
3 | | - "version": "0.2.0", |
| 3 | + "version": "0.2.1", |
4 | 4 | "description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to support JSONC syntax.", |
5 | 5 | "main": "jsonc.js", |
6 | 6 | "type": "commonjs", |
|
24 | 24 | "test-some": "jest -t", |
25 | 25 | "test-watch": "jest --coverage --watchAll", |
26 | 26 | "watch": "tsc -w -d", |
| 27 | + "doc": "jsonic-doc", |
27 | 28 | "build": "tsc -d && cp jsonc.js jsonc.min.js && browserify -o jsonc.min.js -e jsonc.js -s @JsonicJsonc -im -i assert -p tinyify", |
28 | 29 | "prettier": "prettier --write --no-semi --single-quote *.ts test/*.js", |
29 | 30 | "clean": "rm -rf node_modules yarn.lock package-lock.json", |
30 | 31 | "reset": "npm run clean && npm i && npm run build && npm test", |
31 | 32 | "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;", |
32 | 33 | "repo-publish": "npm run clean && npm i && npm run repo-publish-quick", |
33 | | - "repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org " |
| 34 | + "repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org " |
34 | 35 | }, |
35 | 36 | "license": "MIT", |
36 | 37 | "files": [ |
|
40 | 41 | "LICENSE" |
41 | 42 | ], |
42 | 43 | "devDependencies": { |
43 | | - "@types/jest": "^29.4.0", |
| 44 | + "@jsonic/doc": "^0.0.7", |
| 45 | + "@types/jest": "^29.5.3", |
44 | 46 | "browserify": "^17.0.0", |
45 | | - "jest": "^29.4.3", |
46 | | - "prettier": "^2.8.4", |
| 47 | + "jest": "^29.6.2", |
| 48 | + "prettier": "^3.0.1", |
47 | 49 | "tinyify": "^4.0.0", |
48 | | - "typescript": "^4.9.5", |
| 50 | + "typescript": "^5.1.6", |
49 | 51 | "es-jest": "^2.1.0", |
50 | | - "esbuild": "^0.17.8" |
| 52 | + "esbuild": "^0.19.1", |
| 53 | + "@jsonic/jsonic-next": ">=2.12.1" |
51 | 54 | }, |
52 | 55 | "dependencies": {}, |
53 | 56 | "peerDependencies": { |
54 | | - "@jsonic/jsonic-next": ">=2.9.0" |
| 57 | + "@jsonic/jsonic-next": ">=2.12.1" |
55 | 58 | } |
56 | 59 | } |
0 commit comments