-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "url-matcher",
"version": "0.2.2",
"description": "A pattern matcher library for routes with typed parameters",
"main": "lib/index",
"repository": {
"type": "git",
"url": "https://github.com/itajaja/url-matcher.git"
},
"homepage": "https://github.com/itajaja/url-matcher",
"bugs": "https://github.com/itajaja/url-matcher/issues",
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src",
"test": "npm run lint && karma start"
},
"authors": [
"Giacomo Tagliabue"
],
"license": "MIT",
"dependencies": {
"invariant": "^2.0.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.0.0",
"eslint": "^1.7.3",
"eslint-config-rackt": "^1.1.1",
"expect": "^1.12.0",
"karma": "^0.13.13",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.5",
"mocha": "^2.0.1"
},
"tags": [
"route",
"url"
],
"keywords": [
"routing",
"route",
"routes",
"router",
"url",
"matcher"
]
}