-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 994 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
{
"name": "native-slide-toggle",
"version": "1.1.3",
"description": "VanillaJS slide toggle",
"main": "src/nst.js",
"scripts": {
"start": "cd src && browser-sync start --server --files \"*.*\" --no-ghost-mode",
"clean": "rimraf dist/*",
"minifyjs": "uglifyjs src/nst.js -c -o dist/nst.min.js",
"minifycss": "cleancss src/nst.css -o dist/nst.min.css",
"deploy": "npm run clean && npm run minifyjs && npm run minifycss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunukn/native-slide-toggle.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kunukn/native-slide-toggle/issues"
},
"homepage": "https://github.com/kunukn/native-slide-toggle#readme",
"devDependencies": {
"browser-sync": "^2.13.0",
"clean-css": "^3.4.18",
"eslint": "^3.1.1",
"rimraf": "^2.5.3",
"uglifyjs": "^2.4.10"
}
}