forked from Nodonisko/ionic-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
67
68
69
{
"name": "ionic-cache",
"version": "3.1.2",
"description": "Ionic cache service - cache request, data, promises etc.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js",
"build": "rimraf dist && ngc",
"lint": "tslint \"src/**/*.ts\"",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nodonisko/ionic-cache.git"
},
"keywords": [
"ionic",
"ionic",
"cache",
"angular2"
],
"author": "Daniel Suchy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nodonisko/ionic-cache/issues"
},
"homepage": "https://github.com/Nodonisko/ionic-cache#readme",
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@ionic/storage": "^2.1.3",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.18",
"@types/websql": "0.0.27",
"jasmine-core": "^2.6.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.1.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.12",
"karma-typescript-angular2-transform": "^1.0.2",
"karma-typescript-es6-transform": "^1.0.4",
"rimraf": "^2.6.2",
"rxjs": "^5.5.0",
"tslint": "^3.15.1",
"tslint-ionic-rules": "^0.0.8",
"typescript": "~2.6.0",
"zone.js": "^0.8.11"
},
"peerDependencies": {
"@ionic/storage": "^2.1.3"
},
"browser": {
"@angular/common/http": false
}
}