-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.87 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
62
63
64
65
66
{
"name": "titanium-angular",
"version": "0.2.0",
"description": "Use the Titanium platform with Angular",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"test": "echo 'No tests specified'",
"tsc": "tsc -p tsconfig.json",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run syncd && ngc",
"syncd": "cpx src/**/*.d.ts dist/",
"dev": "npm run clean && npm run syncd && ngc --watch",
"prepare": "npm run build",
"bootstrap": "npm i && cd ti-angular-example/app && npm i",
"ng-build": "ng build"
},
"author": "Axway Appcelerator",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/titanium-angular.git"
},
"bugs": {
"url": "https://github.com/appcelerator/titanium-angular/issues"
},
"files": [
"dist"
],
"dependencies": {
"titanium-navigator": "^0.3.1",
"titanium-vdom": "^0.4.4"
},
"peerDependencies": {
"@angular/common": "~9.1.0",
"@angular/compiler": "~9.1.0",
"@angular/core": "~9.1.0",
"@angular/platform-browser": "~9.1.0",
"@angular/platform-browser-dynamic": "~9.1.0",
"@angular/router": "~9.1.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.5.4",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular/cli": "~9.1.0",
"@angular/common": "~9.1.0",
"@angular/compiler": "~9.1.0",
"@angular/compiler-cli": "~9.1.0",
"@angular/core": "~9.1.0",
"@angular/language-service": "~9.1.0",
"@angular/platform-browser": "~9.1.0",
"@angular/platform-browser-dynamic": "~9.1.0",
"@angular/router": "~9.1.0",
"@types/titanium": "^9.0.0",
"cpx": "^1.5.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.5.4",
"ts-node": "~7.0.0",
"tsickle": "^0.38.1",
"tslint": "~5.15.0",
"typescript": "~3.8.3",
"zone.js": "^0.10.3"
}
}