-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.35 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
41
42
43
44
45
46
47
{
"name": "denada",
"version": "0.9.0-rc3",
"description": "A declarative language with no semantics for creating simple DSLs",
"main": "lib/src/denada.js",
"typings": "lib/src/denada.d.ts",
"bin": {
"denada": "bin/denada"
},
"scripts": {
"process": "yarn process:grammar && yarn process:rules",
"process:grammar": "pegjs -o src/grammar.js grammar.pegjs",
"process:rules": "pegjs -o src/ruleGrammar.js ruleGrammar.pegjs",
"copy": "cp src/*.js src/*.d.ts lib/src",
"compile": "yarn process && tsc && yarn copy",
"prepublish": "yarn compile",
"test": "yarn compile && jest"
},
"repository": {
"type": "git",
"url": "http://github.com/xogeny/denada-js.git"
},
"keywords": [
"DSL",
"parser",
"declarative"
],
"author": "Michael M. Tiller",
"license": "MIT",
"bugs": {
"url": "https://github.com/xogeny/denada-js/issues"
},
"homepage": "https://github.com/xogeny/denada-js",
"dependencies": {
"ajv": "^6.5.0",
"argparse": "^0.1.15"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"jest": "^22.4.4",
"pegjs": "^0.10.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}