forked from snabbdom/snabbdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "snabbdom",
"version": "3.6.2",
"description": "A virtual DOM library with focus on simplicity, modularity, powerful features and performance.",
"homepage": "https://github.com/snabbdom/snabbdom#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/snabbdom/snabbdom.git"
},
"keywords": [
"virtual",
"dom",
"vdom",
"light",
"kiss",
"performance"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/snabbdom/snabbdom/issues"
},
"engines": {
"node": ">=12.17.0"
},
"files": [
"build"
],
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc && ts-add-js-extension --dir=build",
"examples": "serve .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky install",
"lint": "eslint .",
"unit": "web-test-runner \"test/unit/*.{ts,tsx}\" --node-resolve --coverage",
"release": "npm run test && release-it",
"test": "npm run build && npm run lint && npm run unit",
"test:watch": "web-test-runner \"test/unit/*.{tsx,tsx}\" --node-resolve --watch"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@release-it/conventional-changelog": "^7.0.2",
"@types/chai": "4.3.9",
"@types/mocha": "10.0.3",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@web/dev-server-esbuild": "^0.4.3",
"@web/test-runner": "^0.17.2",
"@web/test-runner-browserstack": "^0.6.2",
"commithelper": "^1.2.0",
"conventional-changelog-angular": "^7.0.0",
"eslint": "8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-node": "11.1.0",
"husky": "8.0.3",
"lint-staged": "^15.0.2",
"mocha": "10.2.0",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"serve": "^14.2.1",
"ts-add-js-extension": "^1.6.1",
"typescript": "5.2.2"
},
"prettier": {
"trailingComma": "none"
},
"lint-staged": {
"*.(ts|tsx|js|md)": "prettier --write"
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"commithelper": {
"scopeOverrides": {
"chore": [
"tools",
"refactor",
"release",
"test",
"deps",
"docs",
"examples"
]
}
}
}