-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "adonis-preact",
"version": "1.0.0",
"description": "Preact provider for AdonisJS 5",
"main": "./lib/providers/PreactProvider.js",
"types": "./lib/src/types.d.ts",
"files": [
"lib"
],
"keywords": [
"adonisjs",
"adonis",
"preact",
"provider"
],
"author": "Juan Jose Carracedo",
"license": "MIT",
"adonisjs": {
"types": "adonis-preact",
"providers": [
"adonis-preact"
]
},
"scripts": {
"clean": "rimraf lib",
"check-types": "tsc --noEmit",
"eslint": "eslint providers src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run build",
"test-only": "jest",
"test-coverage": "jest --coverage",
"test": "npm run test-only && npm run eslint && npm run check-types",
"build": "npm run clean && npm run tsc-cjs",
"tsc-cjs": "tsc --project tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonsWayo/adonis-preact.git"
},
"bugs": {
"url": "https://github.com/DonsWayo/adonis-preact/issues"
},
"homepage": "https://github.com/DonsWayo/adonis-preact#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"@adonisjs/core": "*",
"preact": "*",
"preact-render-to-string": "*"
},
"devDependencies": {
"@adonisjs/core": "^5.0.5-canary-rc-2",
"@types/jest": "^26.0.20",
"@zakodium/eslint-config": "^3.0.0",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"preact": "^10.7.2",
"preact-render-to-string": "^5.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}