-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "fade-props",
"version": "2.1.1",
"engines": {
"node": ">=6.4.0"
},
"description": "A ReactJS component that seamlessly fades between the props it is provided; it fades one child out, removes it, then fades the next child in.",
"keywords": [
"react-component",
"transition",
"fade"
],
"main": "index.js",
"module": "src/fade-props.js",
"scripts": {
"start": "webpack-dev-server --progress",
"build": "webpack -p",
"prepublishOnly": "yarn build && yarn test",
"preversion": "yarn build && yarn test",
"postversion": "git push && git push --tags",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill"
},
"repository": "https://github.com/chipit24/fade-props",
"author": "Robert Komaromi <[email protected]>",
"license": "ISC",
"peerDependencies": {
"prop-types": "^15",
"react": "^15 || ^16",
"react-dom": "^15 || ^16"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"jest-cli": "^21.2.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.1.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.3.3"
}
}