forked from ujjwalguptaofficial/JsStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "jsstore",
"version": "2.10.2",
"description": "JsStore is an IndexedDB Wrapper. It makes IndexedDB super easy with its SQL like apis.",
"main": "dist/jsstore.commonjs2.js",
"types": "dist/ts/main/index.d.ts",
"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:dev": "npm run lint && npm run webpack:dev && npm run test:dev",
"build:prod": "npm run webpack:prod && node src/ie_build_helper.js && npm run test:prod",
"build:all": "npm run build:dev && npm run build:prod",
"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",
"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",
"deploy": "npm run build:all && 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": {
"@types/node": "^10.12.18",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"copy-webpack-plugin": "^4.5.2",
"fs-extra": "^7.0.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.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.0",
"puppeteer": "^1.11.0",
"smart-banner-webpack-plugin": "^3.0.1",
"ts-loader": "^5.3.3",
"tslint": "^5.11.0",
"typescript": "^3.2.4",
"uglify-js": "^3.4.9",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.1.4"
},
"displayName": "JsStore",
"dependencies": {},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/JsStore"
}
}