package.json 1.44 KB
Newer Older
Sangjune Bae's avatar
Sangjune Bae committed
1
{
baesangjune's avatar
yarn    
baesangjune committed
2
3
4
5
6
7
8
9
  "name": "react-transition-group",
  "version": "4.4.1",
  "description": "A react component toolset for managing animations",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/reactjs/react-transition-group.git"
Sangjune Bae's avatar
Sangjune Bae committed
10
  },
baesangjune's avatar
yarn    
baesangjune committed
11
12
13
14
15
16
17
18
  "keywords": [
    "react",
    "transition",
    "addons",
    "transition-group",
    "animation",
    "css",
    "transitions"
Sangjune Bae's avatar
Sangjune Bae committed
19
20
  ],
  "author": "",
baesangjune's avatar
yarn    
baesangjune committed
21
  "license": "BSD-3-Clause",
Sangjune Bae's avatar
Sangjune Bae committed
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  "bugs": {
    "url": "https://github.com/reactjs/react-transition-group/issues"
  },
  "homepage": "https://github.com/reactjs/react-transition-group#readme",
  "jest": {
    "testRegex": "-test\\.js",
    "setupFiles": [
      "./test/setup.js"
    ],
    "roots": [
      "<rootDir>/test"
    ]
  },
  "peerDependencies": {
    "react": ">=16.6.0",
    "react-dom": ">=16.6.0"
  },
baesangjune's avatar
yarn    
baesangjune committed
39
40
41
42
43
44
  "dependencies": {
    "@babel/runtime": "^7.5.5",
    "dom-helpers": "^5.0.1",
    "loose-envify": "^1.4.0",
    "prop-types": "^15.6.2"
  },
Sangjune Bae's avatar
Sangjune Bae committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  "release": {
    "pkgRoot": "lib",
    "verifyConditions": [
      "@semantic-release/changelog",
      "semantic-release-alt-publish-dir",
      "@semantic-release/git",
      "@semantic-release/github"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "semantic-release-alt-publish-dir",
      "@semantic-release/npm",
      "@semantic-release/git"
    ]
  },
baesangjune's avatar
yarn    
baesangjune committed
60
61
62
63
  "browserify": {
    "transform": [
      "loose-envify"
    ]
Sangjune Bae's avatar
Sangjune Bae committed
64
  },
baesangjune's avatar
yarn    
baesangjune committed
65
  "sideEffects": false
Sangjune Bae's avatar
Sangjune Bae committed
66
}