-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
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
54
55
56
57
58
59
60
61
62
63
{
"name": "puppeteer-ie",
"version": "0.5.7",
"descripton": "Headless Internet Explorer NodeJS API inspired by Puppeteer.",
"keywords": [
"internet-explorer",
"headless-browsers",
"activex-control",
"puppeteer"
],
"author": "shiy007@qq.com",
"license": "LGPL-3.0",
"homepage": "https://techquery.github.io/Puppeteer-IE/",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/Puppeteer-IE.git"
},
"bugs": {
"url": "https://github.com/TechQuery/Puppeteer-IE/issues"
},
"main": "source/index.js",
"engines": {
"node": "^7.6.0"
},
"os": [
"win32"
],
"scripts": {
"lint": "eslint ./source/ ./test/ --fix",
"format": "prettier --write \"{,!(node_modules|.git|source|test)/**/}*.html\"",
"document": "jsdoc ./source/ -c .jsdoc.json && npm run format",
"check": "mocha -r should --recursive --no-timeouts -c --inline-diffs",
"test": "npm run check -- --exit",
"debug": "npm run check -- --inspect-brk",
"build": "npm run lint && npm run document",
"help": "web-server docs/ -o",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ."
}
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.2.0",
"@tech_query/node-toolkit": "^0.8.2",
"cookie": "^0.3.1",
"fs-extra": "^7.0.1",
"html2canvas": "^0.5.0-beta4",
"winax": "^1.0.16"
},
"devDependencies": {
"docdash": "^1.0.1",
"eslint": "^5.11.1",
"husky": "^1.3.1",
"jsdoc": "^3.5.5",
"jsdoc-inheritance-diagram": "^1.2.3",
"koapache": "^1.0.4",
"mocha": "^5.2.0",
"should": "^13.2.3"
}
}