forked from pouchdb-community/transform-pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.17 KB
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
{
"name": "transform-pouch",
"version": "1.1.4",
"description": "Transform Pouch - a PouchDB plugin for transforming documents",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/transform-pouch.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"transform",
"couch",
"couchdb"
],
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/transform-pouch/issues"
},
"scripts": {
"test-node": "TEST_DB=testdb,http://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 -t es3ify index.js -o dist/pouchdb.transform-pouch.js && npm run min",
"min": "uglifyjs dist/pouchdb.transform-pouch.js -mc > dist/pouchdb.transform-pouch.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",
"es3ify": "0.2.2",
"inherits": "2.0.1",
"lie": "3.0.4",
"pouchdb-extend": "0.1.2",
"pouchdb-promise": "5.4.3",
"pouchdb-wrappers": "1.3.6",
"immediate": "~3.0.5"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "^12.0.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "~2.8.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb-adapter-http": "^5.4.4",
"pouchdb-adapter-memory": "^5.4.4",
"pouchdb-core": "^5.4.4",
"pouchdb-mapreduce": "^5.4.4",
"pouchdb-replication": "^5.4.4",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.14.0",
"selenium-standalone": "^5.1.0",
"uglify-js": "^2.4.13",
"watchify": "^3.1.0",
"wd": "^0.2.21"
},
"files": [
"dist",
"index.js",
"pouch-utils.js"
]
}