forked from rcs/route-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
48
49
50
51
52
{
"name": "@supertiger/route-parser",
"version": "0.0.7",
"description": "A isomorphic, bullet-proof, ninja-ready route parsing, matching, and reversing library for Javascript in Node and the browser. ",
"type": "module",
"keywords": [
"url",
"matching",
"routing",
"route",
"regex",
"match"
],
"homepage": "http://github.com/rcs/route-parser",
"author": "Ryan Sorensen <[email protected]> (https://github.com/rcs)",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/rcs/route-parser.git"
},
"bugs": {
"url": "http://github.com/rcs/route-parser/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 0.9"
},
"scripts": {
"compile-parser": "scripts/compile_parser.js",
"clean-compile": "rm ./lib/route/compiled-grammar.js"
},
"license": "MIT",
"devDependencies": {
"chai": "~3.5.0",
"es5-shim": "~4.5.7",
"gulp": "~3.9.0",
"gulp-eslint": "^3.0.1",
"gulp-exec": "~2.1.2",
"jison": "~0.4.17",
"jison-lex": "~0.3.4",
"jsdoc": "~3.4.0",
"karma": "~0.13.22",
"karma-mocha": "~0.2.2",
"karma-phantomjs-launcher": "~1.0.0",
"karma-webpack": "~1.7.0",
"mocha": "~2.4.5",
"phantomjs-prebuilt": "^2.1.6",
"webpack": "~1.12.14",
"webpack-dev-server": "~1.14.1"
},
"dependencies": {}
}