forked from pouchdb/plugin-seed
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"name": "pouch-datalog",
"version": "1.0.0",
"description": "Datalog query engine for PouchDB.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/dahjelle/pouch-datalog.git"
},
"keywords": [
"pouch",
"pouchdb",
"datalog",
"query",
"couch",
"couchdb"
],
"author": "David Alan Hjelle <[email protected]",
"license": "Apache",
"bugs": {
"url": "https://github.com/dahjelle/pouch-datalog/issues"
},
"scripts": {
"test-node": "TEST_DB=testdb,http://test:test@localhost:5984/testdb istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc *.js test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdir -p dist && browserify index.js -o dist/pouchdb.datalog.js && npm run min",
"min": "uglifyjs dist/pouchdb.datalog.js -mc > dist/pouchdb.datalog.min.js",
"dev": "browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "./bin/dev-server.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"argsarray": "0.0.1",
"datascript-async": "0.1.3",
"es3ify": "^0.1.3",
"inherits": "~2.0.1",
"istanbul": "^0.3.2",
"lie": "^2.6.0"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "~2.36.0",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "~2.3.0",
"mocha": "~1.18",
"phantomjs": "^1.9.7-5",
"pouchdb": "pouchdb/pouchdb",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.4.2",
"uglify-js": "^2.4.13",
"watchify": "~0.4.1",
"wd": "^0.2.21"
},
"browser": {
"crypto": false
},
"browserify": {
"transform": [
"es3ify"
]
}
}