-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.08 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
{
"name": "loopconf-2018-automated-update-workshop",
"version": "1.0.0",
"description": "This repository is an example for the LoopConf 3.0 Automating WordPress Updates workshop (2/21/2018).",
"main": "index.js",
"dependencies": {
"backstopjs": "github:ataylorme/backstopjs#ditch-open"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "^6.24.1",
"opn": "~5.3.0",
"rimraf": "~2.6.2"
},
"scripts": {
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log,./README.md,./LICENSE,./backstop_data,./package-lock.json --copy-files --source-maps",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ataylorme/loopconf-2018-automated-update-workshop.git"
},
"author": "Andrew Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/ataylorme/loopconf-2018-automated-update-workshop/issues"
},
"homepage": "https://github.com/ataylorme/loopconf-2018-automated-update-workshop#readme"
}