-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
{
"name": "react-inline-transition-group",
"version": "2.2.1",
"author": "Felipe Thomé",
"description": "Like React CSS Transition Group, but with inline style.",
"license": "BSD-3-Clause",
"repository": "https://github.com/felipethome/react-inline-transition-group",
"homepage": "http://felipethome.github.io/react-inline-transition-group",
"keywords": [
"react",
"react-component",
"react-addons",
"transition-group",
"inline-styles",
"react-addons-css-transition-group"
],
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x"
},
"dependencies": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8",
"react-transition-hooks": "^1.2.0"
},
"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",
"coveralls": "^2.11.14",
"eslint": "^3.9.0",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-gh-pages": "^0.5.4",
"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": "^15.6.2",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-dom": "^15.6.2",
"react-router-dom": "^4.2.2",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"scripts": {
"build": "babel ./src --out-dir ./lib --ignore __tests__",
"clean": "rm -rf demo/{build,deploy}",
"dev": "gulp dev",
"deploy": "gulp ghpages",
"lint": "eslint src/",
"test": "jest --verbose",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"jest": {
"collectCoverage": true,
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testRegex": "(/__tests__/.*\\-test)\\.(js)$",
"roots": [
"<rootDir>/src"
]
}
}