-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
31 lines (31 loc) · 844 Bytes
/
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
{
"name": "react-google-font-loader",
"version": "1.1.0",
"description": "Simple React component to load Google Fonts.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/jakewtaylor/react-google-font-loader",
"author": "Jake Taylor",
"license": "MIT",
"scripts": {
"build": "babel src -d build --copy-files",
"prepublishOnly": "yarn run build"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}