-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.26 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
{
"name": "@quatico/dom-serializer",
"version": "0.6.3",
"description": "A DOM serializer for web components",
"keywords": [
"shadow DOM",
"snapshots",
"jest",
"testing"
],
"author": "Quatico Solutions AG",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/quatico-solutions/dom-serializer.git"
},
"bugs": {
"url": "https://github.com/quatico-solutions/dom-serializer/issues"
},
"homepage": "https://github.com/quatico-solutions/dom-serializer#readme",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"files": [
"LICENSE",
"README.md",
"bin"
],
"scripts": {
"clean": "rimraf dist bin coverage",
"lint": "eslint \"{src,test}/**/*.{js,ts,tsx}\" --fix",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --verbose --coverage",
"test:update-snapshots": "pnpm test -u",
"test:watch": "jest --watch",
"dist": "cross-env-shell NODE_ENV=production \"pnpm clean && pnpm lint && pnpm license:check && pnpm test && pnpm build\"",
"license:check": "license-check-and-add check -f license-config.json",
"license:add": "license-check-and-add add -f license-config.json",
"license:remove": "license-check-and-add remove -f license-config.json",
"prepublishOnly": "pnpm dist",
"publish-npm": "npm publish --access public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-check-and-add": "4.0.5",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}