-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 KB
/
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
42
43
44
45
46
{
"name": "uiswitch",
"version": "1.1.1",
"homepage": "https://github.com/fnky/css3-uiswitch",
"author": "Christian Petersen <[email protected]> (http://cbp.io)",
"description": "A sweet and pure CSS3 iOS 7 UISwitch",
"main": "uiswitch.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/fnky/css3-uiswitch.git"
},
"license": "MIT",
"keywords": [
"css",
"scss",
"sass",
"ios",
"switch",
"button",
"checkbox",
"ui",
"component"
],
"bugs": {
"url": "https://github.com/fnky/css3-uiswitch/issues"
},
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix",
"build-autoprefix": "postcss --use autoprefixer --output css/uiswitch.css css/uiswitch.css",
"build-clean": "rm -rf css",
"build-sass": "node-sass --output-style expanded --source-map true uiswitch.scss css/uiswitch.css",
"start": "npm run build-sass -- --watch"
},
"files": [
"css",
"sass",
"uiswitch.scss",
"LICENSE",
"README.md"
],
"devDependencies": {
"autoprefixer": "^6.7.5",
"node-sass": "^4.5.0",
"postcss-cli": "^3.0.0-beta"
}
}