forked from dumbmatter/fakeIndexedDB
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "fake-indexeddb",
"version": "1.0.3",
"description": "Fake IndexedDB: a pure JS in-memory implementation of the IndexedDB API",
"homepage": "https://github.com/dumbmatter/fakeIndexedDB",
"repository": {
"type": "git",
"url": "git://github.com/dumbmatter/fakeIndexedDB.git"
},
"bugs": {
"url": "https://github.com/dumbmatter/fakeIndexedDB/issues"
},
"keywords": [
"indexeddb",
"datastore",
"database",
"embedded",
"nosql",
"in-memory",
"polyfill",
"shim"
],
"main": "index.js",
"scripts": {
"build": "browserify exports.js -o dist/fakeIndexedDB.js",
"lint": "eslint exports.js index.js test lib",
"mocha": "mocha --timeout 5000 test/w3c test/fakeIndexedDB",
"qunit": "node-qunit-phantomjs ./test/indexedDBmock/index.html",
"test": "npm run lint && npm run mocha && npm run qunit"
},
"author": "Jeremy Scheff <jdscheff@gmail.com> (http://dumbmatter.com/)",
"license": "Apache-2.0",
"dependencies": {
"realistic-structured-clone": "0.0.2"
},
"devDependencies": {
"browserify": "^10.1.3",
"eslint": "^0.20.0",
"mocha": "^2.2.4",
"node-qunit-phantomjs": "^1.2.0",
"phantomjs-polyfill": "0.0.1",
"qunitjs": "^1.18.0",
"setimmediate": "^1.0.2"
}
}