-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
{
"name": "react-log",
"version": "4.0.0",
"description": "React for the Console",
"main": "dist/index.js",
"scripts": {
"build": "babel --optional runtime src -d dist",
"deploy": "git pull --rebase origin master && git push origin master",
"test": "jest --config jest.config.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/diegomura/react-log"
},
"keywords": [
"react",
"log",
"console",
"style"
],
"author": " <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegomura/react-log/issues"
},
"homepage": "https://github.com/diegomura/react-log",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-jest": "^21.2.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"dependency-check": "^2.5.1",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^6.6.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^21.2.1",
"react": "^15.1.0"
},
"dependencies": {
"css-unit-converter": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"param-case": "^2.1.0"
}
}