forked from thysultan/stylis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 940 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
{
"name": "stylis",
"main": "stylis.js",
"unpkg": "stylis.min.js",
"jsdelivr": "stylis.min.js",
"types": "stylis.d.ts",
"description": "light - weight css preprocessor",
"version": "3.5.3",
"homepage": "https://github.com/thysultan/stylis.js",
"license": "MIT",
"author": {
"name": "Sultan Tarimo",
"email": "[email protected]"
},
"keywords": [
"css",
"preprocessor"
],
"repository": {
"type": "git",
"url": "https://github.com/thysultan/stylis.js"
},
"bugs": {
"url": "https://github.com/thysultan/stylis.js/issues"
},
"scripts": {
"test": "node ./tests",
"minify": "uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map",
"prepublish": "npm run minify"
},
"files": [
"stylis.js",
"stylis.min.js",
"stylis.min.js.map",
"stylis.d.ts"
],
"devDependencies": {
"uglify-js": "^3.2.2"
}
}