forked from pixelcrisis/turnstyles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.4 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.4 KB
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
{
"name": "turnStyles",
"version": "5.6.5",
"main": "turnStyles.js",
"repository": "[email protected]:pixelcrisis/turntable-tweaks.git",
"author": "pixelcrisis <[email protected]>",
"license": "MIT",
"scripts": {
"b:1": "browserify -p tinyify turnStyles.js -o build/turnStyles.js",
"b:2": "node-sass turnStyles.sass -o build && postcss build/turnStyles.css --use autoprefixer --no-map -d build/",
"b:3": "node-sass sass/themes -o build/themes && postcss build/themes/*.css --use autoprefixer --no-map -d build/themes/",
"b:4": "node-sass sass/styles -o build/styles && postcss build/styles/*.css --use autoprefixer --no-map -d build/styles/",
"b:5": "cp -R static/. build/",
"w:1": "watchify turnStyles.js -o build/turnStyles.js",
"w:2": "node-sass turnStyles.sass -wo build",
"w:3": "node-sass sass/themes -wo build/themes",
"w:4": "node-sass sass/styles -wo build/styles",
"build": "yarn b:1 && yarn b:2 && yarn b:3 && yarn b:4 && yarn b:5",
"watch": "concurrently \"yarn w:1\" \"yarn w:2\" \"yarn w:3\" \"yarn w:4\""
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"browserify": "^17.0.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"node-sass": "^5.0.0",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"sass": "^1.32.8",
"tinyify": "^3.0.0",
"watchify": "^4.0.0"
},
"dependencies": {}
}