forked from jmdobry/CacheFactory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.69 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.69 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
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
84
85
86
87
88
89
90
{
"name": "cachefactory",
"description": "CacheFactory is a very simple and useful cache for the browser.",
"version": "3.0.0",
"homepage": "https://github.com/jmdobry/CacheFactory",
"repository": {
"type": "git",
"url": "https://github.com/jmdobry/CacheFactory.git"
},
"author": "CacheFactory project authors",
"license": "MIT",
"main": "dist/cachefactory.js",
"jsnext:main": "dist/cachefactory.es2015.js",
"module": "dist/cachefactory.es2015.js",
"typings": "dist/cachefactory.d.ts",
"files": [
"dist/",
"src/",
"AUTHORS",
"CONTRIBUTORS"
],
"keywords": [
"cache",
"cachefactory"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"afterEach",
"assert",
"beforeEach",
"cacheFactory",
"CacheFactory",
"CACHE_DEFAULTS",
"describe",
"it",
"localStorage",
"sessionStorage",
"sinon",
"testId",
"window"
],
"ignore": [
"build_examples",
"dist/",
"doc/"
]
},
"scripts": {
"lint": "standard 'src/**/*.js' 'test/**/*.js'",
"doc": "jsdoc -c conf.json -u guides --readme docs.md src",
"bundle:es5": "rollup src/index.js -c -o dist/cachefactory.js -m dist/cachefactory.js.map -f umd",
"bundle:esnext": "rollup src/index.js -c -o dist/cachefactory.es2015.js -m dist/cachefactory.es2015.js.map -f es",
"bundle": "npm run bundle:es5 && npm run bundle:esnext",
"min": "uglifyjs dist/cachefactory.js -o dist/cachefactory.min.js --source-map dist/cachefactory.min.map --source-map-url cachefactory.min.map -v -m -c --screw-ie8",
"build": "npm run lint && npm run bundle && npm run min",
"gzip": "echo gzipped size: $(cat dist/cachefactory.min.js | gzip -f9 | wc -c)kb",
"karma": "karma start",
"test": "npm run build && npm run karma",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | codecov"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "7.1.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-es2015-modules-umd": "6.23.0",
"babel-preset-es2015": "6.22.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"es6-promise": "4.0.5",
"jsdoc": "3.4.3",
"karma": "1.5.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"minami": "1.1.1",
"mocha": "3.2.0",
"phantomjs-prebuilt": "2.1.14",
"rollup": "0.41.4",
"rollup-plugin-babel": "2.7.1",
"sinon": "1.17.7",
"standard": "8.6.0",
"uglify-js": "2.7.5"
}
}