forked from jmdobry/angular-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 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
55
56
57
58
{
"name": "angular-cache",
"description": "angular-cache is a very useful replacement for Angular's $cacheFactory.",
"version": "3.0.0-beta.4",
"homepage": "http://jmdobry.github.io/angular-cache",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/jmdobry/angular-cache.git"
},
"author": {
"name": "Jason Dobry",
"url": "http://www.pseudobry.com",
"email": "jason.dobry@gmail.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jmdobry/angular-cache/blob/master/LICENSE"
}
],
"postinstall": "node node_modules/bower/bin/bower install && node node_modules/grunt-cli/bin/grunt build",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-copy": "~0.5.0",
"karma": "~0.10.9",
"grunt-karma": "~0.6.2",
"grunt-cli": "~0.1.13",
"phantomjs": "~1.9.7-1",
"karma-script-launcher": "~0.1.0",
"karma-phantomjs-launcher": "~0.1.2",
"karma-chrome-launcher": "~0.1.2",
"karma-firefox-launcher": "~0.1.3",
"karma-coverage": "~0.1.2",
"time-grunt": "~0.2.9",
"load-grunt-tasks": "~0.3.0",
"grunt-karma-coveralls": "~2.3.0",
"sinon": "~1.8.2",
"karma-sinon": "~1.0.2",
"chai": "~1.9.0",
"karma-chai": "~0.1.0",
"mocha": "~1.17.1",
"karma-mocha": "~0.1.1",
"browserify": "~3.30.1",
"grunt-browserify": "~1.3.1",
"bower": "~1.2.8",
"grunt-contrib-watch": "~0.5.3",
"grunt-docular": "~0.1.2",
"grunt-contrib-concat": "~0.3.0"
},
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt test",
"test_ci": "node node_modules/grunt-cli/bin/grunt ci"
}
}