forked from Nodonisko/ionic-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 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
62
63
64
65
66
67
68
69
70
{
"name": "ionic-cache",
"version": "5.2.0",
"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",
"prepare": "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": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@ionic/storage": "^2.2.0",
"@types/jasmine": "^2.8.16",
"@types/node": "^7.10.9",
"@types/websql": "0.0.27",
"jasmine-core": "^2.99.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^4.1.1",
"karma-typescript-angular2-transform": "^4.1.1",
"karma-typescript-es6-transform": "^4.1.1",
"rimraf": "^2.7.1",
"rxjs": "6.2.2",
"tslint": "^3.15.1",
"tslint-ionic-rules": "^0.0.8",
"typescript": "^2.8.4",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@ionic/storage": "^2.1.3"
},
"dependencies": {
"prettier": "^2.0.2"
}
}