-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
65
66
67
{
"name": "@honoluluhenk/typesafe-json-path",
"version": "1.0.1-0",
"description": "Typesafe navigation in JSON data structures for typescrpt",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"files": [
"./build/**"
],
"scripts": {
"build": "tsc --project tsconfig.lib.json",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"lint": "eslint src",
"clean": "rimraf build dist reports",
"bump-prepatch-version": "run-s bump-prepatch-version:*",
"bump-prepatch-version:version": "npm version prepatch --no-git-tag-version",
"bump-prepatch-version:git-add": "git add package.json package-lock.json",
"bump-prepatch-version:git-commit": "git commit -m 'prepare next prepatch version'",
"prepush": "npm run release:prepare",
"release:prepare": "run-s release:prepare:*",
"release:prepare:clean": "run-s clean",
"release:prepare:check": "run-s test lint",
"release:prepare:build": "run-s build",
"release:publish": "npm publish --access=public"
},
"keywords": [
"object",
"traversal",
"path",
"typesafe",
"json"
],
"author": {
"name": "Christoph Linder",
"email": "[email protected]",
"url": "https://github.com/HonoluluHenk"
},
"homepage": "https://github.com/HonoluluHenk/typesafe-json-path",
"bugs": {
"url": "https://github.com/HonoluluHenk/typesafe-json-path/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HonoluluHenk/typesafe-json-path.git"
},
"license": "LGPL-2.1-or-later",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"jest-watch-typeahead": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}