forked from ujjwalguptaofficial/JsStore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.87 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
{
"name": "jsstore",
"version": "4.2.6",
"description": "A complete IndexedDB wrapper with SQL like syntax.",
"main": "dist/npm.export.js",
"types": "dist/ts/main/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint src/**/*.ts",
"test:dev": "karma start test/karma/karma.config.dev.js",
"test:prod": "karma start test/karma/karma.config.prod.js",
"build:ie": "node src/ie_build_helper.js",
"build:pack": "npm run deploy && npm pack",
"build:dev": "npm run webpack:dev && node minifier.js && npm run test:dev",
"build:prod": "npm run webpack:prod && npm run build:ie && npm run test:prod",
"build:all": "npm run build:dev && npm run build:prod",
"test:fire": "karma start test/karma/karma.config.firefox.js",
"test:sauce": "npm run test:sauce:b2 ; npm run test:sauce:b1 ",
"test:sauce:b1": "karma start test/karma/karma.config.saucelab.js --batch1",
"test:sauce:b2": "karma start test/karma/karma.config.saucelab.js --batch2",
"test:sauce:b3": "karma start test/karma/karma.config.saucelab.js --batch3",
"build:ci": "npm run build:all",
"webpack:dev": "webpack --config webpack/webpack.dev.config.js",
"webpack:prod": "webpack --config webpack/webpack.prod.config.js",
"move:deploy_file": "node deployer.js",
"test:injector": "node test/injector/build.js",
"deploy": "npm run lint && npm run build:all && npm run test:fire && npm run test:injector && npm run move:deploy_file"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ujjwalguptaofficial/JsStore.git"
},
"keywords": [
"storage",
"indexeddb",
"sql",
"library",
"wrapper"
],
"author": "Ujjwal Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/ujjwalguptaofficial/JsStore/issues"
},
"homepage": "https://github.com/ujjwalguptaofficial/JsStore#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@types/node": "^10.12.18",
"babel-loader": "^8.0.5",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^6.1.1",
"fs-extra": "^7.0.0",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^2.1.0",
"karma-html-reporter": "^0.2.7",
"karma-htmlfile-reporter": "^0.3.6",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^1.2.0",
"mocha": "^4.1.0",
"promise-polyfill": "^8.1.3",
"puppeteer": "^1.20.0",
"smart-banner-webpack-plugin": "^3.0.1",
"ts-loader": "^7.0.4",
"tslint": "^5.18.0",
"typescript": "^4.3.2",
"uglify-js": "^3.4.9",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"displayName": "JsStore",
"dependencies": {},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/JsStore"
}
}