-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "angular2-indexeddb",
"version": "1.2.3",
"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.js",
"angular2-indexeddb.js.map",
"angular2-indexeddb.min.js",
"angular2-indexeddb.min.js.map",
"angular2-indexeddb.metadata.json",
"index.ts",
"index.d.ts",
"index.js",
"index.js.map",
"LICENSE",
"README.md"
],
"scripts": {
"tsc": "node_modules/.bin/ngc",
"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": ">=4.3.1"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"@angular/compiler": "^4.3.1",
"@angular/compiler-cli": "^2.4.0",
"concurrently": "^3.5.0",
"lite-server": "^1.3.4",
"typescript": "^2.4.2",
"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"
}
}