-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"author": "Guy Ellis <[email protected]>",
"bugs": {
"url": "https://github.com/guyellis/react-log-lifecycle/issues"
},
"dependencies": {
"react": "^15.0.1"
},
"description": "Logs Lifecycle methods of a React component to assist learning and debugging",
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.1.1",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"eslint": "^3.0.0",
"eslint-config-guyellis": "0.0.6",
"eslint-plugin-react": "^6.0.0"
},
"engines": {
"node": ">=5.0.0"
},
"homepage": "https://github.com/guyellis/react-log-lifecycle#readme",
"keywords": [
"react",
"lifecycle",
"log"
],
"license": "MIT",
"main": "lib/main.js",
"name": "react-log-lifecycle",
"repository": {
"type": "git",
"url": "git+https://github.com/guyellis/react-log-lifecycle.git"
},
"scripts": {
"build": ". scripts/build.sh",
"lint": "eslint --ext .js --ext .jsx .",
"prepublish": "npm run build",
"test": "npm run lint"
},
"version": "1.1.0"
}