-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "route-parser",
"version": "0.0.5",
"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": "rcsorensen@gmail.com",
"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": "rcsorensen@gmail.com"
},
"engines": {
"node": ">= 0.9"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha && karma start --singleRun",
"test-node": "mocha",
"test-client": "karma start --singleRun",
"compile-parser": "scripts/compile_parser.js",
"clean-compile": "rm ./lib/route/compiled-grammar.js",
"lint": "eslint ."
},
"license": "MIT",
"devDependencies": {
"chai": "~3.5.0",
"es5-shim": "~4.5.7",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"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": {}
}