-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "multipage-skeleton",
"description": "A tool to automatically generate skeleton screen code.",
"version": "1.3.6",
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "lucifer_zl",
"keywords": [
"multipage skeleton",
"skeleton",
"skeleton screen",
"loading",
"puppeteer",
"page skeleton",
"dps"
],
"preferGlobal": true,
"bin": {
"skeleton": "./bin/skeleton-cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:Jurool/multipage-skeleton.git"
},
"scripts": {
"build": "npx tsc --build -w tsconfig.json",
"test": "node ./examples/index"
},
"dependencies": {
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^6.0.0",
"node-emoji": "^1.10.0",
"ora": "^4.0.4",
"puppeteer": "^5.2.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/node-emoji": "^1.8.1",
"@types/puppeteer": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}