-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 735 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "react-github-corners",
"version": "0.2.1",
"description": "A fresher \"Fork me on Github\" callout ported to React",
"main": "dist/index.js",
"repository": "https://github.com/mshenfield/react-github-corners",
"author": "Max Shenfield <shenfieldmax@gmail.com>",
"license": "MIT",
"dependencies": {
"react": "*"
},
"files": ["dist/GithubCorner.css", "dist/index.js"],
"scripts": {
"build": "babel index.js --out-dir dist && cp GithubCorner.css dist",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-latest": "^6.24.1"
}
}