-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 962 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 962 Bytes
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
{
"name": "react-component-boilerplate",
"version": "0.0.1",
"description": "Sample react component code for publishing as a npm module",
"files": [
"dist/*"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ProdioDesignWorks/react-component-boilerplate.git"
},
"scripts": {
"build": "babel ./src --out-dir ./dist -s inline",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Pawan Wagh <pawan@prodio.in> (https://github.com/pawan-wagh)"
},
"peerDependencies": {
"react": "^16.4.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"license": "ISC",
"dependencies": {
"react": "^16.8.6"
}
}