-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 926 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": "predentation",
"version": "0.1.2",
"description": "A stream for removing indentation from the pre tag",
"author": "Dale Eidd <[email protected]>",
"license": "MIT",
"keywords": [
"html",
"pre",
"indentation"
],
"repository": {
"type": "git",
"url": "https://github.com/daleeidd/predentation.git"
},
"bugs": {
"url": "https://github.com/daleeidd/predentation/issues"
},
"homepage": "https://github.com/daleeidd/predentation",
"main": "index.js",
"bin": {
"predentation": "predentation"
},
"scripts": {
"pretest": "eslint . predentation",
"test": "mocha tests/test.js"
},
"devDependencies": {
"chai": "^1.9.1",
"eslint": "^0.24.1",
"mocha": "^2.2.5",
"stream-equal": "^0.1.5"
},
"dependencies": {
"chalk": "^1.0.0",
"cheerio": "^0.17.0",
"commander": "^2.8.1",
"globby": "^2.1.0",
"through2": "^2.0.0"
}
}