-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 908 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
{
"name": "axist",
"version": "0.0.4",
"description": "Minimal (5kb) drop-in CSS library.",
"scripts": {
"clean": "npx rimraf dist",
"dist": "npx mkdirp dist && cp src/index.css dist/axist.css && npx uglifycss src/index.css > dist/axist.min.css",
"build": "npm run clean && npm run dist",
"test": "stylelint src/index.css",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"start": "npx serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruanmartinelli/axist.git"
},
"author": "Ruan Martinelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruanmartinelli/axist/issues"
},
"homepage": "https://github.com/ruanmartinelli/axist#readme",
"devDependencies": {
"stylelint": "^13.5.0",
"stylelint-config-standard": "^20.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}