-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 908 Bytes
/
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
{
"name": "@gizt/selector",
"version": "1.0.11",
"description": "JSON Selector",
"keywords": [
"json",
"selector",
"query",
"path"
],
"main": "dist/main/index.main.js",
"module": "dist/module/index.module.js",
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p .tsconfig/main.json",
"build:module": "tsc -p .tsconfig/module.json",
"build:single": "tsc -p .tsconfig/single.json",
"dev": "tsc -w -p tsconfig.main.json",
"test": "jest",
"pre-release": "run-s build test"
},
"repository": {
"url": "https://github.com/gizt/selector.git",
"type": "git"
},
"jest": {
"bail": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
]
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"jest": "^28.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.0.2"
}
}