-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "pouchdb-collate",
"version": "1.2.0",
"description": "",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pouchdb/collate.git"
},
"keywords": [
"pouchdb",
"pouch",
"couch",
"couchdb"
],
"scripts": {
"test": "./node_modules/.bin/jshint -c .jshintrc lib/*.js test/*.js && ./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha test/test.js",
"build": "mkdir -p dist && browserify lib/index.js -s pouchCollate -o dist/pouchdb-collate.js"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pouchdb/collate/issues"
},
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.15.1",
"istanbul": "~0.1.46",
"browserify": "~2.36.1",
"jshint": "~2.3.0"
}
}