-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "react-custom-list",
"version": "1.0.1",
"description": "React Component for a dynamic list of custom items.",
"main": "dist/react-list.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js --ext .jsx .",
"build": "npm run lint && webpack --config webpack.config.js --progress --colors",
"build:dev": "npm run lint && webpack --config webpack.config.dev.js --progress --colors",
"serve": "webpack-dev-server --config webpack.config.dev.js --content-base public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luisincrespo/react-custom-list.git"
},
"keywords": [
"list",
"items",
"dynamic",
"custom",
"react",
"react-component"
],
"author": "Luis Crespo",
"license": "MIT",
"bugs": {
"url": "https://github.com/luisincrespo/react-custom-list/issues"
},
"homepage": "https://github.com/luisincrespo/react-custom-list#readme",
"peerDependencies": {
"react": "^0.14.3"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.1.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"alt": "^0.18.2",
"alt-container": "^1.0.2",
"es6-promise": "^3.0.2",
"immutable": "^3.7.5"
}
}