Skip to content
This repository was archived by the owner on Dec 17, 2018. It is now read-only.

Commit f71bfcf

Browse files
committed
Add package.json, with a prepublish script for compiling parser.js
1 parent 8fd7e5b commit f71bfcf

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "messageformat-parser",
3+
"version": "1.0.0-rc.1",
4+
"description": "A PEG.js parser for ICU MessageFormat strings -- part of messageformat.js",
5+
"keywords": [
6+
"icu",
7+
"messageformat",
8+
"parser"
9+
],
10+
"contributors": [
11+
"Alex Sexton <[email protected]>",
12+
"Eemeli Aro <[email protected]>",
13+
"Adrian Vogelsgesang <[email protected]>"
14+
],
15+
"license": "MIT",
16+
"homepage": "https://messageformat.github.io/",
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/messageformat/parser.git"
20+
},
21+
"main": "parser.js",
22+
"files": [
23+
"parser.pegjs",
24+
"parser.js"
25+
],
26+
"devDependencies": {
27+
"pegjs": ">=0.8.0"
28+
},
29+
"scripts": {
30+
"prepublish": "pegjs parser.pegjs"
31+
}
32+
}

0 commit comments

Comments
 (0)