forked from jmdobry/angular-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "angular-cache",
"description": "angular-cache is a very useful replacement for Angular's $cacheFactory.",
"version": "4.6.0",
"homepage": "https://github.com/jmdobry/angular-cache",
"main": "dist/angular-cache.js",
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/jmdobry/angular-cache.git"
},
"author": "angular-cache project authors",
"license": "MIT",
"standard": {
"parser": "babel-eslint",
"globals": [
"localStorage",
"window",
"sessionStorage",
"beforeEach",
"afterEach",
"it",
"describe",
"assert",
"angular"
]
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"lint": "standard src/*.js *.js",
"bundle": "rollup src/index.js -c -o dist/angular-cache.js -m dist/angular-cache.js.map -f umd && node scripts/postbuild",
"min": "uglifyjs dist/angular-cache.js -o dist/angular-cache.min.js --source-map dist/angular-cache.min.map --source-map-url angular-cache.min.map -v -m -c",
"build": "npm run lint && npm run bundle && npm run min",
"karma": "karma start",
"test": "npm run build && npm run karma",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | codecov"
},
"devDependencies": {
"angular": "1.5.8",
"angular-mocks": "1.5.8",
"angular-resource": "1.5.8",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2015-rollup": "1.2.0",
"cachefactory": "1.5.1",
"chai": "3.5.0",
"codecov": "1.0.1",
"es6-promise": "3.2.1",
"karma": "1.2.0",
"karma-chai": "0.1.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.1.1",
"karma-phantomjs-launcher": "1.0.1",
"karma-sinon": "1.0.5",
"mocha": "3.0.2",
"phantomjs-prebuilt": "2.1.12",
"rollup": "0.34.10",
"rollup-plugin-babel": "2.6.1",
"sinon": "1.17.5",
"standard": "8.0.0",
"uglify-js": "2.7.3"
},
"peerDependencies": {
"angular": ">=1.x <2"
}
}