-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "@jsonic/block",
"version": "0.0.1",
"description": "Add multiline string blocks to Jsonic",
"main": "block.js",
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"prettier": "prettier --write --no-semi --single-quote *.ts test/*.js",
"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 prettier && npm run build && npm run test && npm run repo-tag && npm publish --registry http://registry.npmjs.org "
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsonicjs/block.git"
},
"keywords": [
"jsonic",
"json",
"plugin",
"syntax",
"block",
"multiline",
"string"
],
"author": "Richard Rodger (richardrodger.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsonicjs/block/issues"
},
"homepage": "https://github.com/jsonicjs/block#readme",
"dependencies": {
"jest": "^27.1.1",
"jsonic": "github:jsonicjs/jsonic#nextgen"
}
}