-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "@gdscnits/dts",
"version": "3.1.1",
"description": "Convert DOM Node to SVG",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "pnpm build && node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"prepare": "pnpm simple-git-hooks",
"ts": "tsc",
"esbuild": "pnpm ts && node esbuild.config.mjs",
"build": "pnpm esbuild",
"docs": "pnpm ts && jsdoc -c jsdoc.conf.json",
"pretty": "prettier --write .",
"lint": "tsc --noEmit && eslint . --ext .ts --fix",
"prepublish": "pnpm test && pnpm docs"
},
"simple-git-hooks": {
"pre-commit": "pnpm pretty && pnpm lint"
},
"keywords": [
"domToSVG",
"dts",
"d2s"
],
"types": "./types/index.d.ts",
"author": "GDSC NITS <[email protected]>",
"contributors": [
"Jaydeep Das <[email protected]>",
"Saurav Pal <[email protected]>"
],
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"esbuild": "^0.17.5",
"eslint": "^8.33.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jsdoc": "^4.0.0",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"files": [
"dist/index.js",
"types"
]
}