-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 KB
/
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
40
41
42
43
44
45
46
47
48
{
"name": "react-poop",
"version": "1.0.0",
"description": "The ultimate error handler for React",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha --compilers js:babel-register --reporter emoji-reporter ./src/**/*.spec.js",
"build": "babel ./src --out-dir ./dist --ignore *.spec.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicheleBertoli/react-poop.git"
},
"keywords": [
"react-component",
"poop"
],
"author": "Michele Bertoli",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicheleBertoli/react-poop/issues"
},
"homepage": "https://github.com/MicheleBertoli/react-poop#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.0",
"babel-register": "^6.9.0",
"emoji-reporter": "^0.3.0",
"enzyme": "^2.3.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0"
},
"peerDependencies": {
"react": "^15.1.0"
}
}