-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 750 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 750 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": "yellowbox-react",
"version": "0.10.0",
"description": "YellowBox renders warnings at the bottom of the app being developed.",
"main": "lib/index.js",
"esnext:main": "index.js",
"scripts": {
"test": "flow",
"clean": "rm -rf lib",
"build": "babel src --out-dir lib && mv lib/index.blessed.js lib/blessed.js",
"prepublish": "npm run clean && npm run build"
},
"author": "Dustan Kasten <dustan.kasten@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-plugin-transform-class-properties": "^6.3.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18"
},
"dependencies": {
"json-stringify-safe": "^5.0.1",
"prop-types": "^15.5.8"
}
}