-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "@drecom/idb-cache",
"version": "1.1.0",
"description": "idb-cache is a fast and simple cache library for JavaScript using IndexedDB",
"files": [
"README.md",
"dist/"
],
"main": "dist/cjs/idb-cache.js",
"module": "dist/esm/idb-cache.js",
"types": "dist/tsc/idb-cache.d.ts",
"scripts": {
"test": "karma start",
"build": "npm run build:tsc && npm run build:rollup:module && npm run build:rollup:browser && npm run build:uglifyjs && npm test",
"build:tsc": "tsc",
"build:rollup:module": "rollup -c",
"build:rollup:browser": "rollup -c --environment BROWSER",
"build:uglifyjs": "uglifyjs dist/browser/idb-cache.js -o dist/browser/idb-cache.min.js -cm -b beautify=false,preamble='\"// idb-cache - https://github.com/drecom/idb-cache\"'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drecom/idb-cache.git"
},
"keywords": [
"IndexedDB",
"storage",
"limit",
"cache"
],
"author": "Drecom Co.,Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/drecom/idb-cache/issues"
},
"homepage": "https://github.com/drecom/idb-cache#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^6.1.4",
"rollup": "^1.14.5",
"rollup-plugin-babel": "^4.3.2",
"typescript": "^3.5.1",
"uglify-js": "^3.6.0"
}
}