-
-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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
{
"name": "nativescript-angular",
"version": "11.2.0",
"description": "Compatibility with old style nativescript-angular imports.",
"homepage": "https://www.nativescript.org/",
"bugs": "https://github.com/NativeScript/nativescript-angular/issues",
"author": {
"name": "NativeScript Team"
},
"nativescript": {
"platforms": {
"android": "6.0.0",
"ios": "6.0.0"
}
},
"keywords": [
"NativeScript",
"Angular"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-angular.git"
},
"ngPackage": {
"lib": {
"entryFile": "index.ts",
"umdModuleIds": {
"@nativescript/core": "ns-core",
"@nativescript/angular": "ns-angular"
}
},
"allowedNonPeerDependencies": [
"."
]
},
"devDependencies": {
"@angular/animations": "~11.0.0",
"@angular/common": "~11.0.0",
"@angular/compiler": "~11.0.0",
"@angular/compiler-cli": "~11.0.0",
"@angular/core": "~11.0.0",
"@angular/forms": "~11.0.0",
"@angular/platform-browser": "~11.0.0",
"@angular/platform-browser-dynamic": "~11.0.0",
"@angular/router": "~11.0.0",
"@nativescript/angular": "rc",
"@nativescript/core": "rc",
"ng-packagr": "^11.0.0",
"rxjs": "~6.6.0",
"typescript": "~4.0.0"
},
"scripts": {
"setup": "npx rimraf hooks node_modules package-lock.json && npm i",
"build": "ng-packagr -p package.json",
"build.pack": "npm run tsc && npm run build && cd dist && npm pack",
"ngc": "ngc -p tsconfig.json",
"tsc": "tsc",
"pack-with-scoped-version": "cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts"
}
}