-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "@desertnet/html-parser",
"version": "1.0.1",
"description": "HTML parser and non-strict validator",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "rimraf ./dist && babel -d ./dist/es5 -s inline ./lib",
"preversion": "npm test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desertnet/html-parser.git"
},
"keywords": [
"html",
"parser",
"validator"
],
"author": "Eric McCarthy <[email protected]> (http://www.limulus.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/desertnet/html-parser/issues"
},
"homepage": "https://github.com/desertnet/html-parser#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"chai-things": "^0.2.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"@desertnet/scanner": "^1.1.0"
}
}