-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "vimeo-regex",
"description": "The correct vimeo video id regex",
"version": "1.0.0",
"scripts": {
"test": "npm install && mocha",
"test-cov": "npm install && istanbul cover _mocha",
"test-travis": "npm install && istanbul cover _mocha --report lcovonly",
"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
},
"author": {
"name": "Ruslan Ismagilov",
"email": "is.ismagilov@gmail.com",
"url": "https://github.com/isRuslan"
},
"keywords": [
"vimeo",
"regex",
"regexp",
"regexps",
"vimeo regex",
"video id",
"video",
"url"
],
"repository": {
"type": "git",
"url": "git://github.com/isRuslan/vimeo-regex.git"
},
"license": {
"type": "MIT",
"url": "https://github.com/isRuslan/vimeo-regex/blob/master/LICENSE.md"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2"
},
"engines": {
"node": ">= 0.10.33",
"npm": ">= 1.4.28"
}
}