forked from gilf/angular2-indexeddb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 KB
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
{
"name": "angular2-indexeddb",
"version": "1.0.8",
"description": "angular2-indexeddb is a library that wraps indexeddb database in an Angular 2 service",
"repository": {
"type": "git",
"url": "http://github.com/gilf/angular2-indexeddb.git"
},
"files": [
"angular2-indexeddb.ts",
"angular2-indexeddb.d.ts",
"angular2-indexeddb.min.js",
"angular2-indexeddb.min.js.map",
"index.ts",
"index.d.ts",
"index.min.js",
"index.min.js.map",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"build": "node_modules/.bin/grunt build"
},
"license": "MIT",
"keywords": [
"Angular",
"indexedDB",
"ng",
"service"
],
"dependencies": {
"@angular/core": "~2.2.3",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-cssmin": "0.14.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-uglify": "0.9.2",
"grunt-ngdocs": "0.2.9",
"load-grunt-tasks": "3.3.0"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"concurrently": "^1.0.0",
"lite-server": "^1.3.4",
"typescript": "^2.0.10",
"@types/es6-promise": "0.0.32"
}
}