-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ordentco/adonis-drive",
"version": "1.0.2-0",
"description": "Driver based file system built on top of flydrive",
"main": "index.js",
"files": [
"examples",
"providers",
"src",
"instructions.js",
"instructions.md"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc japa",
"test:win": "node ./node_modules/japa-cli/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"lint": "standard"
},
"keywords": [
"fs",
"gcs"
],
"author": "virk",
"license": "MIT",
"dependencies": {
"@slynova/flydrive": "^1.0.2",
"@slynova/flydrive-gcs": "^1.0.2"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/mrm-preset": "^1.0.9",
"@adonisjs/sink": "^1.0.16",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"mrm": "^1.2.1",
"nyc": "^12.0.2",
"pkg-ok": "^2.2.0",
"prettier": "^2.0.2",
"semver": "^5.5.0",
"standard": "^11.0.1"
},
"standard": {
"globals": [
"use"
]
},
"nyc": {
"exclude": [
"test",
"japaFile.js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ordent/adonis-drive.git"
}
}