forked from rwu823/react-ripples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 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
61
62
63
64
65
{
"name": "react-ripples",
"version": "1.1.2",
"description": "The ripple effect. Ripples everything",
"main": "dist/react-ripples.js",
"scripts": {
"dev": "NODE_ENV=development parcel dev/index.html --out-dir out",
"build": "NODE_ENV=production npm-run-all --parallel build:*",
"build:page": "rm -rf gh-pages && parcel build dev/index.html --no-minify --out-dir gh-pages --public-url ./",
"build:lib": "rm -rf out && node scripts/build",
"lint:eslint": "eslint ./ --ignore-path .gitignore",
"test": "jest --coverage",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"react",
"ripple",
"ripples",
"effect",
"button",
"material"
],
"author": "Rocky Wu <rwu823@gmail.com>",
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "./scripts/jest-setup.js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"./scripts/jest-setup"
]
},
"devDependencies": {
"@rwu823/eslint-config-base": "https://github.com/rwu823/eslint-config-base",
"babel-preset-react-app": "^3.1.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.13.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-uglify": "^3.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.2.0",
"prettier": "^1.9.2",
"pump": "^2.0.0",
"react-dom": "^16.2.0",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"shelljs": "^0.7.8"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"repository": "https://github.com/rwu823/react-ripples.git"
}