-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "@csswizardry/defaults.css",
"version": "0.4.0",
"description": "A thoroughly modern, light-touch reset for people who like writing CSS.",
"license": "MIT",
"author": "Harry Roberts <harry@csswizardry.com>",
"homepage": "https://github.com/csswizardry/defaults.css#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/csswizardry/defaults.css.git"
},
"bugs": {
"url": "https://github.com/csswizardry/defaults.css/issues"
},
"keywords": [
"css",
"reset",
"normalize",
"baseline",
"defaults"
],
"style": "dist/defaults.min.css",
"files": [
"dist/defaults.min.css",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist .tmp",
"prebuild": "rimraf dist .tmp && mkdir -p dist .tmp",
"build": "node scripts/banner.js defaults.css > .tmp/defaults.bannered.css && csso .tmp/defaults.bannered.css --comments exclamation -o dist/defaults.min.css",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"csso-cli": "^4.0.2",
"rimraf": "^6.0.1"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}