-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
94 lines (94 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "url-pattern",
"version": "1.0.3",
"description": "easier than regex string matching patterns for urls and other strings. turn strings into data or data into strings.",
"keywords": [
"url",
"string",
"matching",
"pattern",
"matching",
"routing",
"route",
"regex",
"match",
"segment",
"parsing",
"parser",
"parse",
"combinator",
"combinators",
"custom",
"customizable",
"filepath",
"path",
"domain",
"separator",
"stringify",
"generate",
"text",
"processing"
],
"homepage": "http://github.com/snd/url-pattern",
"author": {
"name": "Maximilian Krüger",
"email": "[email protected]",
"url": "http://github.com/snd"
},
"contributors": [
{
"name": "Andrey Popp",
"email": "[email protected]",
"url": "https://github.com/andreypopp"
},
{
"name": "Samuel Reed",
"url": "https://github.com/STRML"
},
{
"name": "Michael Trotter",
"url": "https://github.com/spicydonuts"
},
{
"name": "Kate Hudson",
"url": "https://github.com/k88hudson"
},
{
"name": "caasi Huang",
"url": "https://github.com/caasi"
}
],
"bugs": {
"url": "http://github.com/snd/url-pattern/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/snd/url-pattern.git"
},
"license": "MIT",
"engines": {
"node": ">=0.12.0"
},
"dependencies": {},
"devDependencies": {
"codecov.io": "0.1.6",
"coffee-script": "1.10.0",
"coffeeify": "2.0.1",
"coffeetape": "1.0.1",
"istanbul": "0.4.1",
"tape": "4.2.2",
"zuul": "3.8.0"
},
"main": "lib/url-pattern",
"scripts": {
"compile": "coffee --bare --compile --output lib src",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "coffeetape test/*",
"test-with-coverage": "istanbul cover coffeetape test/* && cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js",
"test-in-browsers": "zuul test/*",
"test-zuul-local": "zuul --local 8080 test/*"
},
"typings": "index.d.ts"
}