forked from ionic-team/ionic-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "ionic-module-template",
"version": "0.0.12",
"description": "A template for creating reusable module for Angular 2 and Ionic 2",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": "dist",
"scripts": {
"ngc": "ngc",
"build": "rm -rf dist && npm run ngc",
"publishPackage": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/driftyco/ionic-module-template.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/driftyco/ionic-module-template/issues"
},
"homepage": "https://github.com/driftyco/ionic-module-template#readme",
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@types/node": "^6.0.60",
"zone.js": "^0.8.18",
"rxjs": "^5.5.2",
"typescript": "^2.4.2"
}
}