-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
35
36
37
38
39
40
{
"name": "@wordpress/block-serialization-spec-parser",
"version": "3.8.2",
"description": "Block serialization specification parser for WordPress posts.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"block",
"spec",
"parser"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/block-serialization-spec-parser/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/gutenberg.git",
"directory": "packages/block-serialization-spec-parser"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=12"
},
"main": "parser.js",
"sideEffects": false,
"dependencies": {
"pegjs": "^0.10.0",
"phpegjs": "^1.0.0-beta7"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "concurrently \"npm run build:js\" \"npm run build:php\"",
"build:js": "pegjs --format commonjs -o ./parser.js ./grammar.pegjs",
"build:php": "node bin/create-php-parser.js"
}
}