This repository was archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
67
68
69
70
71
{
"name": "easy-prismic-react",
"version": "1.1.0",
"description": "Render and fetch prismic data with ease ",
"main": "./dist/src/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier --write ./**/**/*.{tsx,ts} && eslint -c .eslintrc.js --fix --ext .tsx,.ts .",
"lint": "eslint -c .eslintrc.js --ext .tsx,.ts .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"make-badges": "node_modules/.bin/jest-badges-readme"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easyblueio/easy-prismic-react.git"
},
"keywords": [
"prismic",
"react",
"reactjs",
"api",
"easyblue",
"easy"
],
"author": "easyblue.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/easyblueio/easy-prismic-react/issues"
},
"homepage": "https://github.com/easyblueio/easy-prismic-react#readme",
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.4.1",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"conditional-type-checks": "^1.0.5",
"dtslint": "^3.4.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"prismic-javascript": "^2.7.1",
"prismic-richtext": "^1.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test:coverage && yarn make-badges && git add README.md"
}
}
}