-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "recomponent",
"version": "0.1.1",
"description": "Writing react components redefined",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src test",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jeescu/recomponent.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"react",
"component",
"soc"
],
"author": "John Edward Escuyos",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeescu/recomponent/issues"
},
"homepage": "https://github.com/jeescu/recomponent#readme",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-1": "6.22.0",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}