-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
33 lines (33 loc) · 992 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
31
32
33
{
"name": "wordpress-heroku-docker-project",
"version": "1.0.0",
"description": "The Holy Grail WordPress project template for Heroku deployment and local Docker development.",
"author": "Viljami Kuosmanen <[email protected]>",
"main": "index.js",
"license": "GPL-3.0",
"homepage": "https://github.com/anttiviljami/wordpress-heroku-docker-project#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/anttiviljami/wordpress-heroku-docker-project.git"
},
"bugs": {
"url": "https://github.com/anttiviljami/wordpress-heroku-docker-project/issues"
},
"keywords": [
"wordpress",
"heroku",
"docker",
"terraform"
],
"engines": {
"node": "^8.8.1",
"npm": "^5.4.2"
},
"scripts": {
"dev": "npm run start",
"start": "docker-compose up web",
"test": "docker-compose run ci",
"shell": "docker-compose run shell",
"lint": "./vendor/bin/phpcs --extensions=php --standard=./phpcs.xml -n -p ."
}
}