-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 755 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 755 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
{
"name": "react-transform-render-visualizer",
"version": "0.1.1",
"description": "Render visualizer for ReactJS",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --stage 0 --out-dir lib",
"watch": "babel src --stage 0 --watch --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/spredfast/react-transform-render-visualizer"
},
"keywords": [
"react-transform",
"react",
"reactjs"
],
"author": "Rob Grochowicz <rgrochowicz@spredfast.com>",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"rimraf": "^2.4.3"
},
"dependencies": {
"react-pure-render": "^1.0.2"
}
}