-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
46
47
48
49
50
51
52
53
{
"name": "html-flatten",
"version": "0.3.6",
"description": "flattens arbitrary html into a sane structure",
"main": "build/flatten-html.js",
"scripts": {
"prepublish": "grunt build:main",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/the-grid/html-flatten.git"
},
"keywords": [
"html",
"flatten",
"sanitize"
],
"dependencies": {
"bluebird": "^3.1.4",
"he": "^1.1.0",
"htmlparser2": "^3.9.1",
"urijs": "~1.18.3"
},
"browserify": {
"transform": [
"coffeeify"
]
},
"author": "The Grid",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-grid/html-flatten/issues"
},
"homepage": "https://github.com/the-grid/html-flatten",
"devDependencies": {
"brfs": "^1.4.3",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"coffeelint": "^1.15.7",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-coffeelint": "^0.0.16",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-phantomjs": "^4.0.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.1.2",
"thegrid-apidocs": "^0.1.19",
"tv4": "^1.2.7"
}
}