-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1.2 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
{
"name": "wordcamp-japan-theme",
"version": "0.0.1",
"description": "WordCamp Japan Site Theme",
"repository": {
"type": "git",
"url": "git+https://github.com/jawordpressorg/wordcamp-japan-theme.git"
},
"engines": {
"node": ">=8.0.0"
},
"author": "",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/jawordpressorg/wordcamp-japan-theme/issues"
},
"homepage": "https://github.com/jawordpressorg/wordcamp-japan-theme#readme",
"scripts": {
"build": "npm run scss && npm run postcss",
"scss": "node-sass ./scss/ -o ./css/",
"postcss": "postcss ./css/**/*.css --use autoprefixer -d ./css/",
"docker-start": "docker run --name wordcamp-japan-theme -u www-data -v `pwd`:/var/www/wordpress/wp-content/themes/wordcamp-japan-theme --shm-size 2048m -p 80:80 -d torounit/wp-theme-test-env",
"docker-config": "docker exec wordcamp-japan-theme bash -c 'wp theme activate wordcamp-japan-theme --path=/var/www/wordpress'",
"docker-stop": "docker kill wordcamp-japan-theme && docker rm wordcamp-japan-theme"
},
"devDependencies": {
"autoprefixer": "7.1.5",
"node-sass": "4.5.3",
"postcss-cli": "4.1.1"
},
"dependencies": {
"chromy": "^0.5.7"
}
}