-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
177 lines (177 loc) · 7.27 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "@augurproject/indexeddbshim",
"version": "6.1.1",
"author": "Parashuram <code@nparashuram.com>",
"contributors": [
"Brett Zamir"
],
"homepage": "https://github.com/augurproject/IndexedDBShim",
"description": "A polyfill for IndexedDB using WebSql",
"scripts": {
"license-badge": "license-badger --corrections --uncategorizedLicenseTemplate \"\\${license} (\\${name} (\\${version}))\" --filteredTypes=nonempty --textTemplate \"License types\n(project, deps, and bundled devDeps)\" --packageJson --production badges/licenses-badge.svg",
"license-badge-dev": "license-badger --corrections --filteredTypes=nonempty --textTemplate \"License types\n(all devDeps)\" --allDevelopment badges/licenses-badge-dev.svg",
"license-badges": "npm run license-badge && npm run license-badge-dev",
"start": "grunt",
"dev": "grunt dev",
"dev-browser": "grunt dev-browser",
"dev-browserNoninvasive": "grunt dev-browserNoninvasive",
"dev-node": "grunt dev-node",
"dev-unicode": "grunt dev-unicode",
"dev-unicodeNode": "grunt dev-unicodeNode",
"build-grunt": "grunt build",
"build-key": "grunt build-key",
"build-browser": "grunt build-browser",
"build-browserNoninvasive": "grunt build-browserNoninvasive",
"build-node": "grunt build-node",
"build-unicode": "grunt build-unicode",
"build-unicodeNode": "grunt build-unicodeNode",
"clean": "grunt clean",
"clean-w3c": "grunt clean-w3c",
"copy": "grunt -v copy",
"connect-watch": "grunt connect-watch",
"remark": "remark -q -f .",
"lint": "eslint --ext=js,md,html .",
"eslint": "echo '\"grunt eslint\" not working' && npm run lint",
"sqlite-rebuild": "cd node_modules/sqlite3 && npm i",
"w3c-build": "grunt clean-w3c && node test-support/node-buildjs",
"test": "npm run sauce-qunit",
"fake": "grunt clean-fake && grunt fake && grunt clean-fake",
"mock": "grunt clean-mock && grunt mock && grunt clean-mock",
"w3c-old": "grunt clean-w3c-old && grunt w3c-old && grunt clean-w3c-old",
"tests-polyfill": "grunt clean-polyfill && npm run fake && npm run mock && npm run w3c-old",
"mocha": "grunt clean-mocha && grunt mocha && grunt clean-mocha",
"sauce-qunit": "grunt sauce-qunit",
"node-qunit": "grunt clean-qunit && grunt nodequnit && grunt clean-qunit",
"puppeteer-qunit": "grunt clean-qunit && grunt puppeteer-qunit && grunt clean-qunit",
"submodules": "git submodule update --init --recursive && git submodule foreach --recursive git fetch && git submodule foreach git merge origin master",
"wpt": "npm run web-platform-tests",
"web-platform-tests": "cd web-platform-tests && ./wpt serve",
"w3c-find-unused": "node test-support/find-unused.js",
"w3c": "npm run w3c-build && npm run w3c-test",
"w3c-add-wrap": "node test-support/wrap-w3c-tests",
"w3c-remove-wrap": "node test-support/wrap-w3c-tests remove",
"w3c-wrap": "node test-support/wrap-w3c-tests",
"w3c-test": "grunt clean-w3c && NODE_OPTIONS=--max_old_space_size=4096 node --experimental-worker test-support/node-idb-test",
"w3c-good": "npm run w3c-build && node test-support/node-idb-test good && grunt clean-w3c",
"w3c-bad": "npm run w3c-build && node test-support/node-idb-test bad && grunt clean-w3c",
"w3c-good-test": "node test-support/node-idb-test good && grunt clean-w3c",
"w3c-bad-test": "node test-support/node-idb-test bad && grunt clean-w3c"
},
"repository": {
"type": "git",
"url": "https://github.com/augurproject/IndexedDBShim"
},
"bugs": {
"url": "https://github.com/augurproject/IndexedDBShim/issues"
},
"main": "dist/@augurproject/indexeddbshim-node.js",
"browser": "dist/@augurproject/indexeddbshim.min.js",
"module": "src/browser-noninvasive.js",
"keywords": [
"indexedDB",
"database",
"polyfill",
"websql"
],
"browserslist": [
"cover 100%",
"last 3 Chrome versions",
"last 3 Firefox versions",
"last 3 Edge versions",
"last 3 Safari versions",
"last 3 ios_saf versions",
"last 3 Android versions",
"last 3 Opera versions",
"last 3 IE versions",
"last 3 op_mini versions",
"last 3 bb versions",
"last 3 op_mob versions",
"last 3 and_chr versions",
"last 3 and_ff versions",
"last 3 ie_mob versions",
"last 3 and_uc versions",
"last 3 Samsung versions"
],
"dependencies": {
"eventtargeter": "0.8.0",
"regenerator-runtime": "^0.13.3",
"sync-promise": "https://github.com/brettz9/sync-promise.git#full-sync-missing-promise-features",
"typeson": "5.18.2",
"typeson-registry": "1.0.0-alpha.35",
"websql": "https://github.com/brettz9/node-websql.git#configurable-secure2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@mysticatea/eslint-plugin": "^13.0.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"babel-plugin-add-module-exports": "1.0.2",
"bson": "^4.0.3",
"builtin-modules": "^3.1.0",
"canvas": "^2.6.1",
"chai": "4.2.0",
"colors": "1.4.0",
"core-js-bundle": "^3.6.4",
"cyclonejs": "1.1.4",
"eslint": "^6.8.0",
"eslint-config-ash-nazg": "^17.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-no-unsanitized": "^3.0.2",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-qunit": "^4.0.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^16.1.1",
"grunt": "1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-connect": "2.1.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify-es": "https://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-watch": "1.1.0",
"grunt-mocha-test": "0.13.3",
"grunt-node-qunit": "https://github.com/brettz9/grunt-node-qunit.git#grunt1",
"grunt-rollup": "^10.3.0",
"grunt-saucelabs": "https://github.com/brettz9/grunt-saucelabs.git#secure-saucelabs",
"gruntify-eslint": "5.0.0",
"is-date-object": "1.0.2",
"isomorphic-fetch": "^2.2.1",
"js-polyfills": "https://github.com/brettz9/polyfill.git#node",
"jsdom": "16.2.0",
"license-badger": "^0.9.3",
"local-xmlhttprequest": "2.0.0",
"mocha": "7.0.1",
"remark-cli": "^7.0.1",
"remark-lint-ordered-list-marker-value": "^1.0.4",
"request": "^2.88",
"request-promise-native": "^1.0.8",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"sinon": "^9.0.0",
"source-map-support": "0.5.16",
"sourcemap-transformer": "https://github.com/brettz9/sourcemap-transformer.git",
"typescript": "^3.7.5",
"unicode-10.0.0": "0.7.5",
"w3c-blob": "0.0.1",
"ws": "^7.2.1"
},
"bundleDependencies": [],
"license": "(MIT OR Apache-2.0)",
"engines": {
"node": ">=6.9.2"
}
}