mirror of
https://github.com/nolanlawson/blob-util.git
synced 2025-12-08 19:46:19 +00:00
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "pouchdb-plugin-seed",
|
|
"version": "0.1.0",
|
|
"description": "PouchDB Plugin Seed project",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/pouchdb/plugin-seed.git"
|
|
},
|
|
"keywords": [
|
|
"pouch",
|
|
"pouchdb",
|
|
"plugin",
|
|
"seed",
|
|
"couch",
|
|
"couchdb"
|
|
],
|
|
"author": "",
|
|
"license": "Apache",
|
|
"bugs": {
|
|
"url": "https://github.com/pouchdb/plugin-seed/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 index.js -o dist/pouchdb.mypluginname.js && npm run min",
|
|
"min": "uglifyjs dist/pouchdb.mypluginname.js -mc > dist/pouchdb.mypluginname.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": {
|
|
"lie": "^2.6.0",
|
|
"inherits": "~2.0.1",
|
|
"argsarray": "0.0.1",
|
|
"es3ify": "^0.1.3"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|