-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
62 lines (62 loc) · 1.65 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": "react-schemaorg",
"version": "2.0.0",
"displayName": "React: Schema.org",
"description": "Typed Schema.org JSON-LD in React",
"authors": [
"Eyas Sharaiha <eyas@google.com> (https://eyas.sh/)"
],
"maintainers": [
"Eyas Sharaiha <npm@eyas.sh> (https://eyas.sh/)"
],
"types": "./dist/src/index.d.ts",
"main": "./dist/src/index.js",
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.43",
"@types/react-test-renderer": "^17.0.1",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"schema-dts": "^1.1.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=16.3.0",
"schema-dts": ">=0.7.4",
"typescript": ">=3.1.6"
},
"keywords": [
"react",
"jsonld",
"JSON-LD",
"typescript",
"schema.org",
"Semantic Web",
"semantic-web",
"Linked Data",
"linked-data",
"react-helmet",
"helmet",
"script",
"seo"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "prettier --check \"src/**/*\" \"test/**/*\" \"type-test/**/*\"",
"fix": "prettier --write \"src/**/*\" \"test/**/*\" \"type-test/**/*\"",
"test": "npm run lint && tsc --build type-test/ && jest",
"build": "tsc --build .",
"prepare": "npm run build"
},
"homepage": "https://github.com/google/react-schemaorg#readme",
"bugs": "https://github.com/google/react-schemaorg/issues",
"repository": "github:google/react-schemaorg",
"license": "Apache-2.0"
}