forked from bentaylor2/react-structured-data
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
69
70
71
72
73
74
{
"name": "@researchgate/react-structured-data",
"version": "1.2.0",
"description": "Declarative JSON-LD Structured Data for ReactJS Apps",
"author": "Ben Taylor <[email protected]>",
"private": false,
"main": "lib/js/index.js",
"module": "lib/es/index.js",
"license": "MIT",
"keywords": [
"react",
"React",
"react-jsonld",
"json-ld",
"JSON-LD",
"jsonld",
"JSONLD",
"schema.org",
"schema",
"structured data",
"seo",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/researchgate/react-structured-data.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "spire test",
"lint": "spire lint",
"format": "spire format",
"build": "yarn build:js && yarn build:es",
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
"prepublishOnly": "yarn build",
"release": "spire release"
},
"dependencies": {
"he": "^1.2.0",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@researchgate/babel-preset": "^1.2.1",
"@researchgate/spire-config": "^1.3.1",
"cross-env": "^5.2.0",
"eslint-config-prettier": "^6.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"spire": "^1.7.2",
"spire-plugin-semantic-release": "^1.7.2"
},
"peerDependencies": {
"react": "^16.2.0"
},
"spire": {
"extends": [
[
"@researchgate/spire-config",
{
"eslint": "react"
}
]
],
"plugins": [
"spire-plugin-semantic-release"
]
}
}