forked from shaungrady/angular-http-etag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "angular-http-etag",
"version": "2.0.18-ovi",
"description": "Angular module for easy ETag-based caching of $http responses",
"homepage": "https://github.com/shaungrady/angular-http-etag",
"author": "Shaun Grady (http://shaungrady.com)",
"license": "MIT",
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"bundle": "webpack --config .config/webpack.config.js && npm run bundle-umd",
"bundle-umd": "webpack --config .config/webpack.config.browser.js && webpack --config .config/webpack.config.browser-min.js",
"test": "karma start && karma start --ng 1.5 && eslint .",
"test-start": "karma start --no-single-run",
"pretest": "rm -rf coverage/",
"posttest": "istanbul-combine -r lcov -r html coverage/angular_*/**/*.json",
"patch": "npm version patch -m '%s'",
"preversion": "npm run test",
"version": "rm -rf lib/ release/ && npm run bundle && git add -A lib/ release/"
},
"repository": {
"type": "git",
"url": "https://github.com/shaungrady/angular-http-etag.git"
},
"keywords": [
"angular",
"$http",
"etag",
"cache",
"$cacheFactory",
"localStorage",
"sessionStorage",
"web storage",
"entity tag",
"interceptor",
"decorator",
"If-None-Match"
],
"bugs": {
"url": "https://github.com/shaungrady/angular-http-etag/issues"
},
"dependencies": {
"array-map": "^0.0.0",
"object-keys": "^1.0.12"
},
"peerDependencies": {
"angular": ">=1.2 <1.7"
},
"devDependencies": {
"angular": "~1.6.10",
"angular-mocks": "~1.6.10",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "~2.13.0",
"eslint-plugin-node": "~7.0.1",
"eslint-plugin-promise": "~4.0.0",
"eslint-plugin-standard": "~3.1.0",
"istanbul-combine": "~0.3.0",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0"
},
"files": [
"src/*.js",
"lib/*.js",
"release/angular-http-etag.js",
"readme.md",
"LICENSE.md"
]
}