generated from jsonicjs/directive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 KB
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
{
"name": "@jsonic/path",
"version": "1.5.1",
"description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to determine the path to values.",
"main": "dist/path.js",
"type": "commonjs",
"types": "dist/path.d.ts",
"homepage": "https://github.com/jsonicjs/path",
"keywords": [
"pattern",
"matcher",
"object",
"property",
"json"
],
"author": "Richard Rodger (http://richardrodger.com)",
"repository": {
"type": "git",
"url": "git://github.com/jsonicjs/path.git"
},
"scripts": {
"test": "node --enable-source-maps --test \"dist-test/*.test.js\"",
"test-some": "node --enable-source-maps --test --test-name-pattern",
"watch": "tsc --build src test -w",
"doc": "jsonic-doc",
"build": "tsc --build src test",
"clean": "rm -rf dist dist-test node_modules 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 build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"license": "MIT",
"files": [
"src/",
"dist/",
"LICENSE"
],
"devDependencies": {
"@hapi/code": "^9.0.3",
"@jsonic/doc": "^0.0.9",
"@jsonic/expr": ">=1",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"jsonic": ">=2"
}
}