-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "@zeit-dev/ngx-json-gateways",
"version": "1.0.4",
"main": "dist/index.js",
"scripts": {
"publish-dist": "npm publish --access public",
"build": "tsc --project tsconfig.json",
"postbuild": "echo \"#!/usr/bin/env node\" | cat - dist/cli.js >cli.js && mv cli.js dist/cli.js && chmod +x dist/cli.js",
"build:ncc": "yarn ncc build src/index.ts -o dist --external json-schema-to-typescript --external change-case --external json-schema --external prettier",
"test": "jest"
},
"bin": {
"ngx-json-gateways": "dist/cli.js"
},
"repository": "https://github.com/zeitdev/ngx-json-gateways",
"bugs": "https://github.com/zeitdev/ngx-json-gateways/issues",
"author": "Marian Theisen <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"devDependencies": {
"@angular/common": "^9.1.0",
"@angular/core": "^9.1.0",
"@types/jest": "^25.1.4",
"@types/json-schema": "^7.0.4",
"dir-compare": "^2.2.0",
"jest": "^25.2.1",
"json-schema": "^0.2.5",
"rxjs": "^6.5.4",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/glob": "^7.1.1",
"change-case": "^4.1.1",
"glob": "^7.1.6",
"json-schema-to-typescript": "^8.2.0",
"yargs": "^15.3.1"
}
}