-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"name": "iterant",
"version": "0.0.1",
"description": "An iterable wrapper for MarkLogic Server-Side JavaScript",
"main": "iterant.js",
"scripts": {
"test": "echo 'Node'; tape test/*.js && echo 'MarkLogic'; mltap test/*.sjs",
"test-pretty": "npm run test-node && sleep 1 && npm run test-marklogic",
"test-marklogic": "mltap test/*.sjs | tap-notify | tap-diff",
"test-node": "tape test/*.js | tap-notify | tap-diff",
"docs": "documentation build *.js --config documentation.json --name Iterant --format html --output docs/",
"readme": "documentation readme *.js --config documentation.json --section Usage --quiet",
"docs-api": "documentation build *.js --config documentation.json --name Iterant --format json --output docs/docs.json",
"lint": "eslint *.js test/*.*js -c .eslintrc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmakeig/iterable.git"
},
"keywords": [
"marklogic",
"iterable",
"javascript",
"es2015"
],
"author": "Justin Makeig <jmpublic+github@makeig.com> (https://www.github.com/jmakeig)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jmakeig/iterable/issues"
},
"homepage": "https://jmakeig.github.io/iterable",
"dependencies": {},
"devDependencies": {
"concat-stream": "^1.5.2",
"documentation": "^4.0.0-beta15",
"eslint": "^3.12.0",
"mltap": "git://github.com/jmakeig/mltap.git#develop",
"tape": "^4.6.3"
},
"optionalDependencies": {
"faucet": "^0.0.1",
"tap-diff": "^0.1.1",
"tap-notify": "^1.0.0"
}
}