-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.57 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
{
"name": "idb-model",
"version": "0.1.2",
"description": "IndexedDB wrapper",
"main": "dist/idb-model.cjs.js",
"module": "dist/idb-model.es.js",
"jsnext:main": "dist/idb-model.es.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "npm run clean && npm run build-delcarations && npm run clean && npm run rollup-build && npm run uglify",
"build-delcarations": "rimraf index.d.ts && tsc -p . && tsc scripts/mergeDeclarations.ts -m commonjs -t esnext && node scripts/mergeDeclarations.js",
"clean": "rimraf dist",
"lint": "eslint **/*.ts",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"rollup-build": "tsc rollup.config.build.ts -m commonjs -t esnext --moduleResolution node && rollup -c rollup.config.build.js",
"test": "karma start --single-run",
"test-debug": "karma start --auto-watch",
"uglify": "uglifyjs dist/idb-model.umd.min.js -o dist/idb-model.umd.min.js --source-map \"content=dist/idb-model.umd.min.js.map\" --compress --mangle",
"watch": "tsc rollup.config.dev.ts -m commonjs -t esnext --moduleResolution node && rollup --watch -c rollup.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/droooney/idb-model.git"
},
"types": "index.d.ts",
"keywords": [
"indexeddb",
"idb",
"model",
"promise",
"async",
"db",
"database"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-external-helpers": "^7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.56",
"@babel/plugin-transform-runtime": "^7.0.0-beta.56",
"@babel/polyfill": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-typescript": "^7.0.0-beta.56",
"@types/babel-core": "^6.25.5",
"@types/karma": "^1.7.5",
"@types/mocha": "^5.2.5",
"babel-plugin-istanbul": "^5.0.1",
"eslint": "^5.2.0",
"eslint-plugin-typescript": "^0.12.0",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.16.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^17.0.1",
"uglify-js": "^3.4.7"
}
}