-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.4 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
72
73
74
{
"name": "@honoluluhenk/http-param-expander",
"version": "2.0.0-0",
"description": "Expand parameters in headers,parameters,forms,matrix,... for OpenAPI Typescript code generators",
"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",
"test:integration": "sh scripts/integration-test.sh",
"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 lint test",
"release:prepare:build": "run-s build",
"release:prepare:integration-test": "run-s test:integration",
"release:publish": "npm publish --access=public"
},
"keywords": [
"openapi",
"openapi-generator",
"typescript",
"typescript-angular",
"path-parameter",
"matrix-parameter",
"form-parameter",
"encoding",
"uritemplate",
"rfc 6570"
],
"author": {
"name": "Christoph Linder",
"email": "[email protected]",
"url": "https://github.com/HonoluluHenk"
},
"homepage": "https://github.com/HonoluluHenk/http-param-expander",
"bugs": {
"url": "https://github.com/HonoluluHenk/http-param-expander/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HonoluluHenk/http-param-expander.git"
},
"license": "LGPL-2.1-or-later",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.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"
}
}