-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-expandable-listview",
"version": "0.6.1",
"description": "listview which can be expanded to show its children",
"main": "dist/index.js",
"scripts": {
"lint": "standard src/**/*.js | snazzy",
"prepublish": "parallelshell -w \"npm run build:dist -s\" \"npm run build:example -s\" \"npm run build:bower -s\"",
"prebuild": "rimraf dist example build",
"build:dist": "babel src --out-dir dist --source-maps --ignore src/example",
"build:example": "webpack --config webpack.config.js",
"postbuild": "npm run test -s",
"test": "babel-node test/index.js | tnyan",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cht8687/react-expandable-listview.git"
},
"keywords": [
"react",
"react-component",
"component",
"react-motion",
"react-listview",
"listview",
"expandable"
],
"files": [
"dist"
],
"author": "Robert Chang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cht8687/react-expandable-listview/issues"
},
"homepage": "https://github.com/cht8687/react-expandable-listview#readme",
"peerDependencies": {
"react": ">=0.14",
"react-motion": "^0.4.3"
},
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"codecov.io": "^0.1.6",
"coveralls": "^2.11.6",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.9.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^5.0.1",
"faucet": "0.0.1",
"html-webpack-plugin": "^2.16.1",
"isparta": "^4.0.0",
"parallelshell": "^2.0.0",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^1.2.9",
"react-motion": "^0.4.3",
"rimraf": "^2.4.3",
"sinon": "^1.17.4",
"snazzy": "^4.0.0",
"standard": "^7.0.1",
"style-loader": "^0.13.0",
"tap-nyan": "0.0.2",
"tap-xunit": "^1.3.1",
"tape": "^4.5.1",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.16.5"
},
"dependencies": {
"prop-types": "^15.5.10",
"randomstring": "^1.1.3"
}
}