-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "react-transition-hooks",
"version": "1.2.0",
"author": "Felipe Thomé",
"description": "Like React Transition Group, but better.",
"license": "BSD-3-Clause",
"repository": "https://github.com/felipethome/react-transition-hooks",
"homepage": "http://felipethome.github.io/react-inline-transition-group",
"keywords": [
"react",
"react-component",
"react-animation",
"react-addons",
"transition-group"
],
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x"
},
"dependencies": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"eslint": "^3.9.0",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-if": "^2.0.1",
"gulp-notify": "^2.2.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"jest-cli": "^21.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"scripts": {
"build": "babel ./src --out-dir ./lib --ignore __tests__",
"demo": "gulp demo",
"lint": "eslint src/",
"test": "jest --verbose"
},
"jest": {
"collectCoverage": true,
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testRegex": "(/__tests__/.*\\-test)\\.(js)$",
"roots": [
"<rootDir>/src"
]
}
}