-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 962 Bytes
/
package.json
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
34
35
36
37
38
39
{
"name": "react-emit",
"version": "2.1.0",
"main": "./build/main.js",
"scripts": {
"build": "backpack build",
"test": "npm run build && jest --watchAll"
},
"files": ["build/main.js"],
"author": "Evan Jones <[email protected]> (https://evanjon.es/)",
"license": "MIT",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"backpack-core": "^0.5.0",
"jest": "^22.1.4",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0"
},
"dependencies": {
"custom-event": "^1.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"peerDependencies": {
"react": "^16.0.0-0"
},
"bugs": {
"url": "https://github.com/mini-eggs/react-emit/issues"
},
"homepage": "https://github.com/mini-eggs/react-emit",
"repository": {
"type": "git",
"url": "https://github.com/mini-eggs/react-emit.git"
},
"babel": {
"presets": ["env", "react"]
}
}