forked from malteschmitz/regex.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 770 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 770 Bytes
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
{
"name": "regex.js",
"version": "1.0.0",
"description": "Automata based RegEx interpreter (educational!)",
"scripts": {
"jison": "jison regex-parser.jison",
"precompile": "npm run jison",
"compile": "tsc -p .",
"pretest": "npm run compile",
"test": "mocha",
"prewatch": "npm run jison",
"watch": "tsc -p . -w",
"postinstall": "typings install",
"prestart": "npm run compile",
"start": "node main.js"
},
"author": "Malte Schmitz <malte@schmitz-sh.de>",
"license": "MIT",
"dependencies": {
"source-map-support": "^0.4.8"
},
"devDependencies": {
"chai": "^3.5.0",
"jison": "^0.4.17",
"mocha": "^3.2.0",
"mocha-typescript": "^1.0.15",
"typescript": "^2.1.5",
"typings": "^2.1.0"
}
}