forked from KromDaniel/mhtml-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "fast-mhtml",
"version": "1.1.7",
"description": "Parses mhtml files",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "nyc --reporter=html mocha src/*.test.js",
"lint": "eslint src/*.js",
"benchmark": "node --expose-gc src/benchmark/benchmark.js",
"serve": "node src/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testimio/mhtml-parser.git"
},
"keywords": [
"Parses",
"mhtml",
"files"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/testimio/mhtml-parser/issues"
},
"homepage": "https://github.com/testimio/mhtml-parser#readme",
"dependencies": {
"bluebird": "^3.5.2",
"cheerio": "^1.0.0-rc.3",
"css-tree": "^1.0.0-alpha.39",
"express": "^4.16.4",
"filenamify": "^2.1.0"
},
"optionalDependencies": {
"64": "^0.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
}
}