forked from hivivo/ngx-json-viewer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
43
44
45
46
47
48
49
{
"name": "ngx-json-viewer",
"version": "2.4.0",
"description": "JSON formatter / viewer for Angular 2/4/5/6/7+",
"keywords": [
"angular",
"json"
],
"author": "Vivo Xu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hivivo/ngx-json-viewer.git"
},
"bugs": {
"url": "https://github.com/hivivo/ngx-json-viewer/issues"
},
"homepage": "https://github.com/hivivo/ngx-json-viewer#readme",
"main": "index.ts",
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
},
"scripts": {
"build": "ng-packagr -p package.json -c ./tsconfig.lib.json",
"pack:lib": "npm run build && npm pack ./dist",
"publish:lib": "npm run build && npm publish ./dist"
},
"dependencies": {},
"peerDependencies": {
"@angular/core": ">=8.0.0",
"@angular/common": ">=8.0.0",
"deep-equal": "^1.1.1",
"rxjs": ">=6.5.3"
},
"devDependencies": {
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/compiler-cli": "^8.2.14",
"@angular/core": "^8.2.14",
"@types/deep-equal": "^1.0.1",
"ng-packagr": "^5.7.1",
"rxjs": "^6.5.3",
"typescript": "<3.6",
"zone.js": "^0.10.2"
}
}