-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "fruitdown",
"description": "A browser-based LevelDOWN adapter that works over all IndexedDB implementations, including Apple's",
"contributors": [
"Nolan Lawson (https://github.com/nolanlawson)"
],
"keywords": [
"leveldb",
"indexeddb",
"safari",
"apple",
"leveldown",
"levelup"
],
"version": "1.0.2",
"main": "lib/index.js",
"dependencies": {
"abstract-leveldown": "0.12.3",
"argsarray": "0.0.1",
"d64": "^1.0.0",
"inherits": "^2.0.1",
"tiny-queue": "0.2.0"
},
"devDependencies": {
"beefy": "~1.1.0",
"browserify": "^13.0.0",
"fake-indexeddb": "^1.0.3",
"jshint": "^2.5.0",
"levelup": "^0.18.2",
"phantomjs-prebuilt": "^2.1.5",
"smokestack": "^3.3.1",
"tap-closer": "^1.0.0",
"tap-spec": "^4.1.0",
"tape": "^2.12.3",
"zuul": "^3.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nolanlawson/fruitdown.git"
},
"browser": {
"bindings": false
},
"scripts": {
"dev": "npm run jshint && beefy tests/test.js",
"jshint": "jshint -c .jshintrc lib tests",
"test": "npm run jshint && npm run test-browser",
"test-fakeindexeddb": "node tests/test.js",
"test-browser": "browserify tests/test.js | tap-closer | smokestack -b $BROWSER | tap-spec",
"test-saucelabs": "zuul --no-coverage --browser-name $BROWSER_NAME --browser-version $BROWSER_VERSION -- tests/test.js",
"test-phantom": "zuul --no-coverage --phantom -- tests/test.js"
},
"license": "MIT",
"gypfile": false,
"files": [
"lib"
]
}