-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 728 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 728 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
{
"name": "react-serialize",
"productName": "React Serialize",
"description": "Serialize and deserialize React components to JSON",
"keywords": [
"react",
"serialization"
],
"version": "0.2.1",
"main": "lib",
"esnext": "src",
"files": [
"bin",
"lib",
"src"
],
"scripts": {
"build": "babel src -d lib",
"watch": "babel src -d lib -w",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.44",
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-stage-1": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44"
},
"peerDependencies": {
"react": ">14.0.0"
},
"license": "MIT"
}