-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 990 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
{
"name": "html-tokeniser",
"version": "0.0.2",
"description": "HTML tokeniser that supports streaming interfaces. Converts HTML into tokens and provides options to transforma and convert those tokens back into a HTML string.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironikart/html-tokeniser.git"
},
"devDependencies": {
"chai": "^2.1.0",
"mocha": "^2.1.0",
"rimraf": "^2.3.0"
},
"author": "Anthony Barnes",
"license": "ISC",
"dependencies": {
"htmlparser2": "^3.8.2",
"lodash.defaults": "^3.1.1",
"memory-cache": "^0.1.4",
"node-cache": "^3.0.0",
"through2": "^2.0.0"
},
"engines": {
"node": ">= 0.10.x"
},
"bugs": {
"url": "https://github.com/ironikart/html-tokeniser/issues"
},
"homepage": "https://github.com/ironikart/html-tokeniser#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}