-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "@flybase/react-ontology-ribbon",
"version": "0.3.0",
"description": "A react component for generating heatmap type displays for ontology slims.",
"main": "./dist/react-ontology-ribbon.umd.js",
"module": "./dist/react-ontology-ribbon.es.js",
"files": [
"dist/*.css",
"dist/*.js"
],
"scripts": {
"prebuild": "yarn run format",
"build": "vite build",
"prestart": "yarn run format",
"start": "vite",
"dev": "vite",
"format": "prettier --write 'src/**/*.jsx'"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0",
"react-dom": "^16.14.0 || ^17.0.0"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.1",
"prettier": "2.4.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"vite": "^2.5.4"
},
"author": "Jim Thurmond",
"contributors": [
{
"name": "Josh Goodman"
}
],
"homepage": "",
"license": "MIT",
"repository": "https://github.com/FlyBase/react-ontology-ribbon",
"keywords": [
"react-component",
"Gene Ontology",
"slim"
],
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
},
"publishConfig": {
"access": "public"
}
}