-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "react-tinyscrollbar",
"version": "0.1.6",
"description": "A React component of Tinyscrollbar.",
"main": "./dist/ReactTinyscrollbar.js",
"scripts": {
"pretest": "npm install",
"jshint": "jshint webpack.config.js",
"eslint": "eslint webpack.config.js",
"jscs": "jscs webpack.config.js",
"test": "npm run jshint & npm run eslint & npm run jscs",
"start": "npm test & webpack-dev-server --hot",
"build": "npm test & webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/jostw/react-tinyscrollbar.git"
},
"keywords": [
"react",
"tinyscrollbar"
],
"author": "jos",
"license": "MIT",
"bugs": {
"url": "https://github.com/jostw/react-tinyscrollbar/issues"
},
"homepage": "https://github.com/jostw/react-tinyscrollbar",
"devDependencies": {
"babel-core": "^5.6.20",
"babel-loader": "^5.3.1",
"eslint": "^0.24.1",
"eslint-loader": "^0.14.1",
"jscs": "^1.13.1",
"jscs-loader": "^0.1.0",
"jshint": "^2.8.0",
"jshint-loader": "^0.8.3",
"node-libs-browser": "^0.5.2",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"jquery": "^2.1.4",
"react": "^0.13.3",
"tinyscrollbar": "^2.4.2"
}
}