-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-ripple-css",
"version": "0.2.0",
"description": "React component for rendering material design ripple effect using CSS animations",
"main": "./build/build.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --inline --hot --output-public-path=build",
"build": "webpack -p --config webpack.config.prod.js"
},
"jest": {
"moduleNameMapper": {
"(css|less)$": "<rootDir>/src/styleMock.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubien/react-ripple-css.git"
},
"keywords": [
"react",
"ripple",
"react ripple",
"ripple effect",
"ripple animation",
"material design",
"google material design"
],
"author": "Jacob Mortensen <jacob@jacobmortensen.com> (http://jacobmortensen.com)",
"license": "ISC",
"bugs": "https://github.com/ubien/react-ripple-css/issues",
"homepage": "https://github.com/ubien/react-ripple-css#readme",
"dependencies": {
"react": "^15.3.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint-config-airbnb": "^12.0.0",
"jest": "^16.0.1",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-babel-jest": "^1.0.4",
"webpack-dev-server": "^1.16.2"
},
"eslintConfig": {
"extends": "react-app"
}
}