-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.06 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
42
43
44
45
{
"name": "nip",
"description": "Node Input/output Piping",
"version": "1.1.0",
"author": "Moshe Kolodny <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kolodny/nip/issues"
},
"dependencies": {
"commander": "^2.8.1",
"split": "^0.3.3"
},
"bin": {
"nip": "./bin/nip"
},
"keywords": [
"cli",
"unix",
"utility",
"sed",
"grep",
"awk"
],
"bugs": {
"url": "https://github.com/kolodny/nip/issues"
},
"homepage": "https://github.com/kolodny/nip#readme",
"main": "index.js",
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.14",
"mocha": "^2.2.4",
"rek": "0.0.4"
},
"scripts": {
"test": "mocha 'test/**/*.js'",
"test-cov": "node ./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha 'test/**/*.js' -- --reporter dot",
"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha 'test/**/*.js' -- -R spec"
},
"license": "MIT",
"directories": {
"test": "test"
}
}