-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 KB
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
{
"name": "@narakeet/api-client",
"version": "1.2.0",
"description": "Command line API client for the Narakeet vidoe build API",
"bin": {
"narakeet-api-client": "./bin/cmd.js"
},
"files": [
"src",
"bin",
"*.txt"
],
"scripts": {
"pretest": "eslint src tests *.js",
"test": "jest",
"test:integration": "jest --testPathPattern=integration",
"test:unit": "--testPathIgnorePatterns=integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/narakeet/api-client.git"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/tests/"
],
"testEnvironment": "node",
"globalSetup": "./tests/init.js"
},
"keywords": [
"videopuppet",
"video",
"narakeet"
],
"author": "Gojko Adzic <gojko@gojko.com> (https://gojko.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/narakeet/api-client/issues"
},
"homepage": "https://github.com/narakeet/api-client#readme",
"dependencies": {
"archiver": "^5.3.0",
"minimist": "^1.2.5",
"axios": "^0.24.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"jest": "^26.6.3"
}
}