-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 947 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 947 Bytes
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
{
"name": "@pyxeldev/reset-css",
"version": "1.1.0",
"description": "Tiny Reset CSS",
"keywords": [
"reset",
"css"
],
"homepage": "https://github.com/pyxel-dev/reset-css#readme",
"bugs": {
"url": "https://github.com/pyxel-dev/reset-css/issues"
},
"license": "MIT",
"author": "Pyxel <contact@pyxel.dev> (https://github.com/pyxel-dev)",
"contributors": [
"Kevin Py <kevin.py@pyxel.dev> (https://kevinpy.com)"
],
"files": [
"reset.scss",
"reset.min.css",
"reset.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pyxel-dev/reset-css.git"
},
"scripts": {
"build": "npm run build:min && npm run build:dev",
"build:min": "node-sass --output-style compressed reset.scss reset.min.css",
"build:dev": "node-sass --output-style expanded reset.scss reset.css",
"watch": "npm run build -- -w"
},
"devDependencies": {
"node-sass": "^4.12.0"
}
}