-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "ldjson-to-couchdb",
"description": "Pipe STDIN in LDJSON format to CouchDB",
"version": "0.0.3",
"author": "Radek Stepan <dev@radekstepan.com>",
"license": "AGPL-3.0",
"dependencies": {
"coffee-script": "^1.8.0",
"highland": "^2.0.0",
"nano": "^6.0.1",
"ndjson": "^1.3.0",
"snyk": "^1.28.1"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "3.3.0",
"proxyquire": "^1.1.0"
},
"main": "index.js",
"bin": {
"ldjson-to-couchdb": "./bin/run.js"
},
"scripts": {
"start": "echo '{\"key\": \"a\"}\n{\"key\": \"b\"}' | ./bin/run.js 'http://localhost:5984/db'",
"test": "env TEST=1 ./node_modules/.bin/mocha --compilers coffee:coffee-script/register --ui exports --slow 2000 --bail",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"keywords": [
"ndjson",
"ldjson",
"couchdb",
"gasket",
"pipe"
],
"repository": {
"type": "git",
"url": "git://github.com/radekstepan/ldjson-to-couchdb.git"
},
"snyk": true
}