-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "adonis-react",
"version": "0.2.1",
"description": "React provider for AdonisJS 5",
"main": "./lib/providers/ReactProvider.js",
"types": "./lib/src/types.d.ts",
"files": [
"lib"
],
"keywords": [
"adonisjs",
"adonis",
"react",
"provider"
],
"author": "Michaël Zasso",
"license": "MIT",
"adonisjs": {
"types": "adonis-react",
"providers": [
"adonis-react"
]
},
"scripts": {
"clean": "rimraf lib",
"check-types": "tsc --noEmit",
"eslint": "eslint providers src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run tsc",
"test-only": "jest",
"test-coverage": "jest --coverage",
"test": "npm run test-only && npm run eslint && 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-react.git"
},
"bugs": {
"url": "https://github.com/zakodium/adonis-react/issues"
},
"homepage": "https://github.com/zakodium/adonis-react#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"@adonisjs/core": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@adonisjs/core": "^5.0.5-canary-rc-2",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@zakodium/eslint-config": "^3.0.0",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}