forked from AmirTugi/tea-school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@recursyve/tea-school",
"version": "2.1.0",
"description": "A simplified html + css --> PDF generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npx tsc",
"test": "npx ts-mocha ./src/__tests__/**.test.ts --timeout 5000",
"example": "npx ts-node examples/basic-usage/index.ts",
"example:invoice": "npx ts-node examples/invoice/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recursyve/tea-school.git"
},
"keywords": [
"PDF",
"puppeteer",
"nodejs",
"pdf-generator"
],
"author": "Amir Tugendhaft",
"license": "ISC",
"bugs": {
"url": "https://github.com/Recursyve/tea-school/issues"
},
"homepage": "https://github.com/Recursyve/tea-school#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.10",
"@types/pug": "^2.0.6",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"ts-mocha": "^9.0.2",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"pug": "^3.0.2",
"puppeteer": "^16.1.1",
"sass": "^1.54.4"
}
}