-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1005 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1005 Bytes
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
{
"name": "severus-scrape",
"version": "0.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Jim O'Brien <jim@jimmed.net>",
"license": "MIT",
"keywords": ["scraper", "html"],
"scripts": {
"test": "jest",
"build": "tsc",
"docs": "docz",
"now-build": "yarn docs build",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/jest": "^23.3.11",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.1.4",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"husky": "^1.3.1",
"jest": "^23.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"fast-html-parser": "^1.0.1",
"lodash": "^4.17.15",
"node-fetch": "^2.3.0"
},
"files": ["lib", "yarn.lock"],
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-publish": "yarn test"
}
}
}