-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "@snapview/sunrise-dom",
"version": "1.0.0",
"description": "A `sunrise`-based lib for DOM-manipulations",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"test": "jest src",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snapview/sunrise-dom.git"
},
"author": "Snapview.de team",
"license": "MIT",
"devDependencies": {
"@snapview/sunrise": "^0.0.10",
"@types/jest": "^28.1.0",
"csstype": "^3.1.0",
"jest-environment-jsdom": "^28.1.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"bugs": {
"url": "https://github.com/snapview/sunrise-dom/issues"
},
"homepage": "https://github.com/snapview/sunrise-dom#readme",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}