-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "jpptr",
"version": "1.6.2",
"description": "a json syntactic sugar for execute puppeteer",
"main": "./lib/index.js",
"type": "commonjs",
"files": [
"lib",
"dist"
],
"bin": {
"jpptr": "./lib/commander/bin.js"
},
"scripts": {
"test": "nyc mocha",
"gulp": "gulp --tasks && gulp",
"lint": "eslint . --ext .ts --ext .js --ext .json",
"build": "tsc && pnpm lint && pnpm gulp && pnpm test && pnpm doc",
"cz": "git add . && git cz",
"doc": "typedoc --options ./typedoc.json"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/enncy/jpptr.git"
},
"keywords": [
"puppeteer",
"json",
"headless-chrome",
"nodejs",
"typescript"
],
"author": "enncy",
"license": "MIT",
"bugs": {
"url": "https://github.com/enncy/jpptr/issues"
},
"homepage": "https://github.com/enncy/jpptr#readme",
"dependencies": {
"axios": "^0.24.0",
"chalk": "^4.0.0",
"commander": "^8.3.0",
"denque": "^2.0.1",
"glob": "^7.2.0",
"ora": "^5.0.0",
"pino": "^7.6.4",
"puppeteer-core": "^13.0.1",
"reflect-metadata": "^0.1.13",
"strip-json-comments": "^3.1.0",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.3.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-plugin-mocha": "^10.0.3",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-typedoc": "^3.0.2",
"highlight.js": "^11.4.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typescript": "^4.5.4",
"typescript-json-schema": "^0.53.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*types.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}