-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "function-regex",
"version": "1.0.2",
"description": "Function regex. Regular expression for matching function parts. Expose match groups for function name, arguments and function body.",
"scripts": {
"lint": "jshint index.js && jscs index.js --reporter inline",
"test": "mocha",
"test-cov": "istanbul cover _mocha",
"test-travis": "istanbul cover _mocha --report lcovonly"
},
"author": {
"name": "Charlike Make Reagent",
"email": "[email protected]",
"url": "https://github.com/tunnckoCore"
},
"repository": {
"type": "git",
"url": "git://github.com/regexps/function-regex.git"
},
"keywords": [
"args",
"arguments",
"body",
"express",
"expression",
"expressions",
"function",
"functions",
"match",
"name",
"re",
"regex",
"regexp",
"regexps",
"regular"
],
"license": {
"type": "MIT",
"url": "https://github.com/regexps/function-regex/blob/master/license.md"
},
"dependencies": {},
"devDependencies": {
"cleanup-coverage-code": "~1.0.2",
"coverage-code-regex": "~1.0.2",
"istanbul-harmony": "^0.3.1",
"mocha": "*",
"mocha-lcov-reporter": "^1.2.0"
}
}