-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.21 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@qmap/engine",
"packageManager": "yarn@3.2.0",
"version": "1.1.3",
"description": "JSON manipulation engine",
"author": "Josué Galeano",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gbenm/qmap.git"
},
"homepage": "https://gbenm.github.io/qmap/",
"keywords": [
"json",
"query",
"transformation",
"transform",
"manipulation",
"http",
"qmap",
"engine",
"map",
"filter",
"schemas",
"validation"
],
"main": "dist/engine/index.js",
"types": "dist/engine/index.d.ts",
"exports": {
".": "./dist/engine/index.js",
"./compiler": "./dist/compiler/index.js"
},
"scripts": {
"lint": "eslint . --ext .ts",
"test": "jest",
"test-junit": "JEST_JUNIT_OUTPUT_DIR='junit' jest --reporters='jest-junit'",
"clean": "rimraf dist",
"prebuild": "yarn clean && yarn lint && yarn test",
"build": "yarn prebuild && webpack && yarn postbuild",
"paths:dts": "tscpaths --project tsconfig.json --src ./src -o ./dist",
"postbuild": "yarn del dist/compiler/syntax/*.d.ts && yarn paths:dts",
"npm:dist": "yarn build && .tools/npm-pack",
"release": "standard-version -s",
"release:minor": "yarn release --release-as minor",
"release:patch": "yarn release --release-as patch",
"release:major": "yarn-release --release-as major"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"antlr4": "~4.9.3",
"del-cli": "^4.0.1",
"eslint": "^8.13.0",
"fs-extra": "^10.1.0",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.4",
"ts-loader": "^9.3.1",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tscpaths": "^0.0.9",
"typescript": "^4.6.3",
"webpack": "5.66.0",
"webpack-cli": "^4.10.0"
},
"typesVersions": {
"*": {
"compiler": [
"./dist/compiler/index.d.ts"
]
}
},
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}