-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "youtube-regex",
"description": "The correct Youtube video id regex! Regex done right!",
"version": "1.0.5",
"scripts": {
"test": "npm install && node_modules/.bin/mocha",
"test-cov": "npm install && node_modules/.bin/istanbul cover node_modules/.bin/_mocha",
"test-travis": "npm install && node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly",
"coveralls": "npm run test-travis && cat ./coverage/lcov.info | node_modules/.bin/coveralls"
},
"author": {
"name": "Charlike Make Reagent",
"email": "[email protected]",
"url": "https://github.com/tunnckoCore"
},
"keywords": [
"youtube",
"youtu.be",
"regex",
"regexp",
"regexps",
"youtube regex",
"video id",
"id",
"video",
"url"
],
"repository": {
"type": "git",
"url": "git://github.com/regexps/youtube-regex.git"
},
"license": {
"type": "MIT",
"url": "https://github.com/regexps/youtube-regex/blob/master/license.md"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "1.2.0"
},
"engines": {
"node": ">= 0.10.33",
"npm": ">= 1.4.28"
}
}