-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
{
"name": "@avocode/react-listview",
"version": "0.8.0",
"description": "Create List components with keyboard support",
"main": "dist/index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "webpack --config webpack.config.coffee",
"build:example": "webpack --config example/webpack.config.coffee",
"clean": "rm index.js example/main.js",
"prepublish": "coffee -o dist/ src/",
"test": "mocha test/"
},
"author": "Jakub Zitny <jakubzitny@avocode.com> (https://github.com/jakubzitny)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:avocode/react-listview.git",
"web": "https://github.com/avocode/react-listview"
},
"dependencies": {
"classnames": "^2.2.5",
"create-react-class": "^15.6.3",
"immutable": "^3.8.1",
"prop-types": "^15.7.2",
"react-dom-factories": "^1.0.2"
},
"peerDependencies": {
"react": "^0.14.8 || ^15 || ^16",
"react-dom": "^0.14.8 || ^15 || ^16"
},
"devDependencies": {
"enzyme-adapter-react-16": "^1.15.1",
"chai": "^3.5.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"enzyme": "^3.0.0",
"lodash.assign": "^4.0.9",
"mocha": "^2.5.3",
"react": "^16",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^16",
"sinon": "^1.17.4",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}