-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1 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
{
"name": "sculpt",
"version": "0.1.7",
"description": "Generate Node 0.10-friendly transform streams to manipulate other streams.",
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"engineStrict": true,
"scripts": {
"ensure-tests": "bin/ensure-tests",
"jshint": "jshint lib/* test/* index.js",
"jscs": "jscs lib/* test/* index.js",
"mocha": "mocha --reporter spec --check-leaks",
"zuul": "bin/zuul-tests",
"test": "bin/test"
},
"devDependencies": {
"es5-shim": "^4.0.3",
"jscs": "~1.3.0",
"jshint": "~2.4.4",
"mocha": "~1.17.1",
"phantomjs": "^1.9.10",
"zuul": "^1.11.0"
},
"author": "Evan Solomon <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Medium/sculpt",
"repository": {
"type": "git",
"url": "git://github.com/Medium/sculpt.git"
},
"bugs": {
"url": "https://github.com/Medium/sculpt/issues"
},
"keywords": [
"stream",
"streams2",
"transform",
"objectMode"
]
}