-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
27 lines (27 loc) · 994 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
{
"name": "wordpress-post-grammar",
"version": "0.1.0",
"description": "PEG.js grammar for WordPress posts including new theming designs",
"main": "index.js",
"scripts": {
"postinstall": "pegjs -o ./post-parser.js ./src/post.pegjs",
"build:css": "elm-css explorer/Stylesheets.elm -o explorer/",
"build:explorer-parser": "pegjs --export-var postParser --format globals -o ./explorer/post-parser.js ./src/post.pegjs",
"build:explorer-elm": "elm-make explorer/Explorer.elm --output explorer/explorer.js",
"build:explorer": "npm run build:explorer-parser && npm run build:css && npm run build:explorer-elm",
"start": "chokidar '**/*.elm' -c 'npm run build:explorer'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"WordPress",
"Grammar",
"PEGjs",
"parser"
],
"author": "Dennis Snell <dennis.snell@automattic.com>",
"license": "ISC",
"devDependencies": {
"elm-css": "^0.6.0",
"pegjs": "0.10.0"
}
}