-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "react-github-languages",
"version": "1.0.0",
"description": "A React component to display a repository's used languages (just like Github does).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"repository": "git://github.com/willdavsmith/react-github-languages.git",
"publishConfig": {
"cache": "~/.npm",
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"react",
"github",
"languages"
],
"author": "@willdavsmith",
"license": "MIT",
"bugs": {
"url": "https://github.com/willdavsmith/react-github-languages/issues"
},
"homepage": "https://github.com/willdavsmith/react-github-languages#readme",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"rollup": "^2.41.4",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
}
}