-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
49 lines (49 loc) · 1.18 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": "@vimeo/vimeo",
"version": "3.0.3",
"license": "Apache-2.0",
"description": "A Node.js library for the new Vimeo API.",
"homepage": "https://developer.vimeo.com/",
"main": "index.js",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vimeo/vimeo.js.git"
},
"keywords": [
"vimeo"
],
"dependencies": {
"tus-js-client": "^1.5.1"
},
"devDependencies": {
"chai": "^4.x.x",
"codecov": "^3.x.x",
"husky": "^8.0.0",
"mocha": "^10.x.x",
"nyc": "^15.x.x",
"sinon": "^15.0.1",
"standard": "^17.0.0"
},
"scripts": {
"standard": "standard index.js lib/*.js example/*.js test/**/*.js",
"mocha": "nyc mocha --recursive --reporter landing --timeout=3000",
"test": "npm run standard && npm run mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/vimeo/vimeo.js/issues"
},
"engines": {
"node": ">=10"
}
}