-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
50
51
52
53
{
"name": "flydrive-google-drive",
"version": "0.1.5",
"description": "node-flydrive driver for Google Drive",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:win",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win"
},
"repository": {
"type": "git",
"url": "https://github.com/molobala/flydrive-google-drive.git"
},
"keywords": [
"storage",
"filesystem",
"google",
"drive",
"Google",
"Drive",
"file"
],
"author": "Doumbia Mahamadou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/molobala/flydrive-google-drive/issues"
},
"homepage": "https://github.com/molobala/flydrive-google-drive#readme",
"dependencies": {
"request": "^2.83.0",
"google-auth-library": "^0.12.0"
},
"devDependencies": {
"async": "^2.6.0",
"coveralls": "^3.0.0",
"dotenv": "^5.0.0",
"google-auth-library": "^0.12.0",
"japa": "^1.0.5",
"japa-cli": "^1.0.1",
"nyc": "^11.2.1",
"standard": "^11.0.0",
"@slynova/flydrive": "^0.1.6"
},
"nyc": {
"include": [
"src"
]
}
}