-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.09 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
{
"name": "line-number",
"description": "Get the line number for each regex match found in a string.",
"version": "0.1.0",
"homepage": "https://github.com/jonschlinkert/line-number",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/line-number.git"
},
"bugs": {
"url": "https://github.com/jonschlinkert/line-number/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jonschlinkert/line-number/blob/master/LICENSE-MIT"
}
],
"keywords": [
"each",
"expression",
"file",
"find",
"index",
"line",
"line-no",
"line-number",
"lines",
"locate",
"match",
"matches",
"num",
"number",
"pattern",
"re",
"regex",
"regexp",
"regular",
"search",
"string"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha -R spec"
},
"devDependencies": {
"verb": "~0.2.6",
"chai": "~1.9.1",
"mocha": "*"
}
}