-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
71 lines (71 loc) · 1.87 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
68
69
70
71
{
"name": "jsonuri",
"version": "3.4.5",
"description": "Use URI path to get or set data",
"keywords": [
"array",
"data",
"data operator",
"javascript",
"json",
"json path",
"jsonuri",
"nodejs",
"object",
"path",
"uri",
"vue"
],
"homepage": "https://jsonuri.js.org",
"bugs": "https://github.com/aligay/jsonuri/issues",
"repository": {
"type": "git",
"url": "https://github.com/aligay/jsonuri.git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/typings/index.d.ts",
"scripts": {
"build": "pnpm run clean && pnpm run lint && node scripts/build.js",
"clean": "rimraf ./dist",
"debug": "node --inspect-brk dist/index.js",
"deploy:gh-pages": "node scripts/gh-pages.js",
"dev": "m-sh 'pnpm run dev:tsc'",
"dev:tsc": "pnpm run clean && tsc -w",
"lint": "#eslint ./src --fix",
"prepublishOnly": "npm test && node scripts/pre-publish.js",
"test": "pnpm run lint && pnpm run build && jest --coverage"
},
"config": {
"ghooks": {
"pre-commit": "sh scripts/pre-commit.sh"
}
},
"dependencies": {
"idmp": "*"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"codecov": "^3.8.3",
"eslint": "^9.2.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"gh-pages": "^6.1.1",
"ghooks": "^2.0.4",
"imod": "^1.5.0",
"jest": "^29.7.0",
"multi-shell": "^2.0.0-alpha.1",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}