-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "layout2pages",
"version": "1.0.2",
"description": "将完整页面形式转化成类似 pdf A4 页面形式的转换函数",
"main": "index.js",
"scripts": {
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Guitenbay/layout2pages.git"
},
"keywords": [
"typescript",
"layout",
"pdf",
"html"
],
"author": "Guitenbay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Guitenbay/layout2pages/issues"
},
"homepage": "https://github.com/Guitenbay/layout2pages#readme",
"devDependencies": {
"@types/jquery": "^3.3.38",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3",
"pre-commit": "^1.2.2"
},
"dependencies": {
"jquery": "^3.5.1"
}
}