-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"name": "stitches-normalize-css",
"version": "1.2.0",
"author": "Paul Simon Ongpin <paulsimon.ongpin@gmail.com>",
"license": "MIT",
"description": "Normalize CSS for stitches",
"repository": {
"type": "git",
"url": "https://github.com/psongpin/stitches-normalize-css.git"
},
"bugs": "https://github.com/psongpin/stitches-normalize-css/issues",
"keywords": [
"css",
"reset",
"reset.css",
"normalize",
"normalize.css",
"stitches",
"css-in-js"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"prebuild": "rm -rf lib && mkdir -p lib",
"test": "echo \"No test specified\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^6.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
}
}