-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "string-to-regexp",
"version": "0.1.1",
"description": "A simple module that knows how to build a regexp with or without flags without using eval.",
"main": "string-to-regexp.js",
"scripts": {
"test": "grunt nodeunit"
},
"repository": {
"type": "git",
"url": "git@github.com:darrin/node-string-to-regexp.git"
},
"keywords": [
"regexp",
"nodejs"
],
"author": "Darrin F. Edelman",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/darrin/node-string-to-regexp/blob/master/LICENSE.txt"
}
],
"bugs": {
"url": "https://github.com/darrin/node-string-to-regexp/issues"
},
"homepage": "https://github.com/darrin/node-string-to-regexp",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"jshint": "^2.5.8",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^1.0.0",
"nodeunit": "^0.9.0",
"time-grunt": "^1.0.0"
}
}