-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 902 Bytes
/
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": "nedjs",
"version": "0.0.3",
"description": "use javascript to manipulate stdin",
"main": "index.js",
"scripts": {
"prebuild": "node mkdata.js",
"build": "node_modules/.bin/mustache readme.json README.hb > README.md",
"postbuild": "rm readme.json"
},
"bin": {
"ned": "./ned"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karimsa/ned.git"
},
"keywords": [
"sed",
"manipulate",
"strings",
"stdin"
],
"author": "Karim Alibhai",
"license": "MIT",
"bugs": {
"url": "https://github.com/karimsa/ned/issues"
},
"homepage": "https://github.com/karimsa/ned#readme",
"dependencies": {
"map-stream": "0.0.6",
"minimist": "^1.2.0",
"sort-stream": "^1.0.1",
"split": "^1.0.0",
"stream-reduce": "^1.0.3",
"through": "^2.3.8"
},
"devDependencies": {
"mustache": "^2.3.0"
}
}