-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 729 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 729 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
{
"name": "babel-plugin-transform-react-binding",
"version": "0.1.0",
"description": "Babel transform to optimise function binding in react render methods",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/ -d lib/ --source-maps",
"build:watch": "babel src/ --out-dir lib/ --source-maps --watch"
},
"keywords": [
"babel",
"react",
"bind"
],
"author": "Chris Pearce <hello@chrispearce.me>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0"
}
}