-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "@jsonic/json5",
"version": "0.0.1",
"description": "Jsonic plugin for the JSON5 variant of JSON.",
"main": "json5.js",
"type": "commonjs",
"browser": "json5.min.js",
"types": "json5.d.ts",
"homepage": "https://github.com/jsonicjs/variant-json5",
"keywords": [
"json",
"jsonic",
"json5",
"variant"
],
"author": "Richard Rodger (http://richardrodger.com)",
"repository": {
"type": "git",
"url": "git://github.com/jsonicjs/variant-json5.git"
},
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && 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 build && npm run test && npm run repo-tag && npm publish --access public --registry http://registry.npmjs.org "
},
"license": "MIT",
"files": [
"*.ts",
"*.js",
"*.map",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"jsonic": "github:jsonicjs/jsonic#nextgen"
},
"dependencies": {}
}