-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "darkenizer",
"version": "0.0.1",
"description": "dark theme generator",
"main": "app.js",
"scripts": {
"start": "npm run watch-all",
"build-css": "node-sass app.scss -o dist/ --output-style compressed",
"watch-css": "node-sass -w app.scss -o dist/ --output-style compressed",
"bundle-js": "browserify app.js | uglifyjs > dist/bundle.js",
"watch-js": "watchify app.js -o dist/bundle.js -v",
"watch-all": "concurrently \"npm run watch-js\" \"npm run watch-css\""
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/vittau/darkenizer.git"
},
"keywords": [
"dark",
"theme",
"generator"
],
"author": "Vitor Machado",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/vittau/darkenizer/issues"
},
"homepage": "/~https://github.com/vittau/darkenizer#readme",
"dependencies": {
"hex-to-hsl": "^1.0.2",
"hsl-to-hex": "^1.0.0",
"query-ast": "^1.0.1",
"scss-parser": "^1.0.0",
"vue": "^2.2.6"
},
"devDependencies": {
"browserify": "^14.3.0",
"concurrently": "^3.4.0",
"node-sass": "^4.5.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.9.0"
}
}