FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nativescript-angular/nativescript-angular/package.json at master · PeterStaev/nativescript-angular · GitHub
PeterStaev
/
nativescript-angular
Public
forked from
NativeScript/nativescript-angular
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
nativescript-angular
/
nativescript-angular
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
107 lines (107 loc) · 3.31 KB
Breadcrumbs
nativescript-angular
/
nativescript-angular
/
package.json
Copy path
File metadata and controls
107 lines (107 loc) · 3.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name"
:
"
@nativescript/angular
"
,
"version"
:
"
10.1.5
"
,
"description"
:
"
An Angular renderer that lets you build mobile apps with NativeScript.
"
,
"homepage"
:
"
https://www.nativescript.org/
"
,
"bugs"
:
"
https://github.com/NativeScript/nativescript-angular/issues
"
,
"main"
:
"
index.js
"
,
"module"
:
"
index.js
"
,
"types"
:
"
index.d.ts
"
,
"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
"
},
"scripts"
: {
"setup"
:
"
npx rimraf hooks node_modules package-lock.json && npm i && npm run prep.apps
"
,
"prep.apps"
:
"
npm run build.pack && cd ../build/pack-scripts && npm i && npx ts-node pack-scoped.ts
"
,
"build"
:
"
ng-packagr -p package.json
"
,
"build.pack"
:
"
npm run tsc && npm run build && cd dist && npm pack
"
,
"format"
:
"
npx prettier --write .
"
,
"format-check"
:
"
npx prettier --check .
"
,
"tsc"
:
"
tsc -p tsconfig.json
"
,
"tsc-w"
:
"
tsc -p tsconfig.json -w
"
,
"ngc"
:
"
ngc
"
,
"ngcc"
:
"
ngcc
"
,
"ngcc-run"
:
"
npm run ngcc && ngc -p tsconfig.json
"
,
"changelog"
:
"
conventional-changelog -p angular -i ../CHANGELOG.md -s
"
,
"version"
:
"
rm -rf package-lock.json && npm run changelog && git add ../CHANGELOG.md
"
,
"typedoc"
:
"
typedoc --tsconfig
\"
./tsconfig.typedoc.json
\"
--out ./bin/dist/ng-api-reference --includeDeclarations --name
\"
NativeScript Angular
\"
--theme ./node_modules/nativescript-typedoc-theme --excludeExternals --externalPattern
\"
**/+(tns-core-modules|module|declarations).d.ts
\"
"
},
"sideEffects"
:
false
,
"ngPackage"
: {
"assets"
: [
"
../README.md
"
],
"lib"
: {
"entryFile"
:
"
index.ts
"
,
"umdModuleIds"
: {
"@nativescript/core"
:
"
ns-core
"
}
},
"whitelistedNonPeerDependencies"
: [
"
.
"
]
},
"dependencies"
: {
"@nativescript/zone-js"
:
"
~1.0.0
"
,
"nativescript-intl"
:
"
^4.0.0
"
},
"peerDependencies"
: {
"@angular/common"
:
"
^10.1.0
"
,
"@angular/compiler"
:
"
^10.1.0
"
,
"@angular/core"
:
"
^10.1.0
"
,
"@angular/forms"
:
"
^10.1.0
"
,
"@angular/platform-browser"
:
"
^10.1.0
"
,
"@angular/platform-browser-dynamic"
:
"
^10.1.0
"
,
"@angular/router"
:
"
^10.1.0
"
},
"devDependencies"
: {
"@angular/animations"
:
"
~10.1.0
"
,
"@angular/common"
:
"
~10.1.0
"
,
"@angular/compiler"
:
"
~10.1.0
"
,
"@angular/compiler-cli"
:
"
~10.1.0
"
,
"@angular/core"
:
"
~10.1.0
"
,
"@angular/forms"
:
"
~10.1.0
"
,
"@angular/platform-browser"
:
"
~10.1.0
"
,
"@angular/platform-browser-dynamic"
:
"
~10.1.0
"
,
"@angular/router"
:
"
~10.1.0
"
,
"@nativescript/core"
:
"
~7.0.0
"
,
"codelyzer"
:
"
^5.2.0
"
,
"conventional-changelog-cli"
:
"
^2.0.34
"
,
"husky"
:
"
^4.2.5
"
,
"lint-staged"
:
"
^10.2.11
"
,
"nativescript-typedoc-theme"
:
"
git://github.com/NativeScript/nativescript-typedoc-theme.git#master
"
,
"ng-packagr"
:
"
~10.1.0
"
,
"prettier"
:
"
^2.0.5
"
,
"rxjs"
:
"
~6.6.0
"
,
"tslint"
:
"
^6.1.2
"
,
"tslint-config-prettier"
:
"
^1.18.0
"
,
"typedoc"
:
"
~0.17.0
"
,
"typescript"
:
"
~3.9.0
"
,
"zone.js"
:
"
^0.11.1
"
},
"husky"
: {
"hooks"
: {
"pre-commit"
:
"
lint-staged
"
}
},
"lint-staged"
: {
"."
: [
"
prettier --write .
"
]
}
}
Back
|
FazBrowse Home
|
New Git URL