-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.81 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
{
"name": "dl-iconfont",
"version": "0.1.1",
"type": "module",
"description": "An iconfont downloader via puppeteer.",
"repository": "https://github.com/rx-ts/dl-iconfont.git",
"author": "Zhenggang Su <zgsu@alauda.io>",
"contributors": [
"JounQin <admin@1stg.me>"
],
"license": "MIT",
"engines": {
"node": ">=12"
},
"bin": {
"dli": "./bin/cli.js",
"dl-iconfont": "./bin/cli.js",
"iconfont-dl": "./bin/cli.js"
},
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"files": [
"lib"
],
"keywords": [
"download-iconfont",
"dl-iconfont",
"iconfont",
"iconfont-dl",
"iconfont-downloader"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:tsc": "tsc -b",
"dev": "yarn ts ./src/cli.ts",
"lint": "run-p lint:*",
"lint:es": "eslint . -f friendly",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"ts": "node --loader ts-node/esm",
"typecov": "type-coverage"
},
"dependencies": {
"dotenv": "^10.0.0",
"got": "^11.8.2",
"puppeteer": "^10.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@1stg/lib-config": "^4.0.0",
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@types/puppeteer": "^5.4.4",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"type-coverage": "^2.18.2",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}