forked from reactjs/react-transition-group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
76
77
78
{
"name": "react-transition-group",
"version": "1.1.2",
"description": "A react component toolset for managing animations",
"main": "lib/index.js",
"scripts": {
"test": "jest --runInBand --verbose",
"tdd": "jest --watch",
"build": "rimraf lib && babel src --out-dir lib && npm run build:dist",
"build:dist": "rimraf lib/dist && webpack -p --define process.env.NODE_ENV='production'",
"lint": "eslint src test",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactjs/react-transition-group.git"
},
"keywords": [
"react",
"transition",
"addons",
"transition-group",
"animation",
"css",
"transitions"
],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/reactjs/react-transition-group/issues"
},
"homepage": "https://github.com/reactjs/react-transition-group#readme",
"jest": {
"testRegex": "-test\\.js",
"roots": [
"<rootDir>/test"
],
"timers": "fake"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"chain-function": "^1.0.0",
"dom-helpers": "^3.2.0",
"prop-types": "^15.5.6",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest-cli": "^19.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"release-script": "^1.0.2",
"rimraf": "^2.6.1",
"teaspoon": "^6.4.3",
"webpack": "^2.2.1"
},
"release-script": {
"altPkgRootFolder": "lib"
}
}