-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "adonis-datadrive",
"version": "0.5.1",
"description": "Extended drive provider for AdonisJs",
"main": "./lib/providers/DataDriveProvider.js",
"types": "./lib/adonis-typings/index.d.ts",
"files": [
"lib",
"src",
"templates"
],
"keywords": [
"adonisjs",
"adonis",
"drive",
"datadrive",
"provider"
],
"author": "Michaël Zasso",
"license": "MIT",
"adonisjs": {
"templates": {
"basePath": "./templates",
"config": "datadrive.txt"
},
"types": "adonis-datadrive",
"providers": [
"adonis-datadrive"
]
},
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run eslint && npm run prettier && npm run check-types",
"tsc": "npm run clean && npm run tsc-cjs",
"tsc-cjs": "tsc --project tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/adonis-datadrive.git"
},
"bugs": {
"url": "https://github.com/zakodium/adonis-datadrive/issues"
},
"homepage": "https://github.com/zakodium/adonis-datadrive#readme",
"devDependencies": {
"@adonisjs/core": "^5.3.2",
"@zakodium/eslint-config": "^3.0.3",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/node": "^16.7.10"
}
}