-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.55 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
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "apollo-angular-link-network-status",
"description": "Information about the network status of your GraphQL operations. Built for Apollo Angular.",
"version": "1.0.4",
"author": {
"email": "[email protected]",
"name": "Kamil Kisiela",
"url": "https://github.com/kamilkisiela"
},
"repository": {
"type": "git",
"url": "kamilkisiela/apollo-angular-link-network-status"
},
"main": "dist/bundles/ng.apollo-network-status.umd.js",
"module": "dist/fesm5/ng.apollo-network-status.js",
"typings": "dist/ng.apollo-network-status.d.ts",
"license": "MIT",
"sideEffects": false,
"keywords": [
"graphql",
"angular",
"ngx",
"apollo",
"apollo-angular",
"apollo-link",
"api"
],
"scripts": {
"build": "ng-packagr -p package.json",
"prerelease": "yarn build",
"release": "npm publish dist"
},
"peerDependencies": {
"@angular/core": "^6.0.0 || ^7.0.0",
"apollo-link": "^1.0.0"
},
"devDependencies": {
"@angular/compiler": "7.2.13",
"@angular/compiler-cli": "7.2.13",
"@angular/core": "7.2.13",
"apollo-link": "1.2.11",
"ng-packagr": "5.1.0",
"tsickle": "0.34.3",
"typescript": "3.2.4"
},
"ngPackage": {
"lib": {
"entryFile": "index.ts",
"flatModuleFile": "ng.apollo-network-status",
"umdModuleIds": {
"@angular/core": "ng.core",
"apollo-link": "apolloLink.core",
"rxjs": "rxjs",
"rxjs/operators": "rxjs.operators"
}
}
}
}