forked from rcs/route-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "route-parser",
"version": "0.0.6-1",
"description": "A isomorphic, bullet-proof, ninja-ready route parsing, matching, and reversing library for Javascript in Node and the browser. ",
"keywords": [
"url",
"matching",
"routing",
"route",
"regex",
"match"
],
"homepage": "http://github.com/rcs/route-parser",
"author": {
"name": "Ryan Sorensen",
"email": "[email protected]",
"url": "https://github.com/rcs"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/rcs/route-parser.git"
},
"bugs": {
"url": "http://github.com/rcs/route-parser/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 0.9"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "( npm run clean-compile || true ) && npm run compile-parser",
"test": "mocha && karma start --singleRun",
"test-node": "mocha",
"test-client": "karma start --singleRun",
"compile-parser": "node scripts/compile_parser.js",
"clean-compile": "rm ./lib/route/compiled-grammar.js",
"lint": "eslint ."
},
"license": "MIT",
"devDependencies": {
"chai": "4.1.2",
"es5-shim": "4.5.9",
"eslint": "4.6.1",
"eslint-config-airbnb": "15.1.0",
"eslint-config-airbnb-base": "12.0.0",
"eslint-plugin-import": "2.7.0",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-exec": "2.1.3",
"jison-gho": "0.6.0-188",
"@gerhobbelt/jison-lex": "0.6.0-188",
"jsdoc": "3.5.4",
"karma": "1.7.1",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "2.0.4",
"mocha": "3.5.0",
"phantomjs-prebuilt": "2.1.15",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
},
"dependencies": {}
}