-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
138 lines (138 loc) · 4.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "styled-transition-group-animation",
"version": "2.1.0",
"description": "Generate animation width styled-components and react-transition-group's CSSTransition",
"main": "dist/index.js",
"scripts": {
"build:storybook": "build-storybook -c .storybook -o ./public/storybook",
"dev:storybook": "start-storybook -p 3006 -s ./src -c .storybook",
"build": "rm -rf dist && babel src --ignore **/*.test.js,**/*.spec.js,**/*.story.js,**/utils --out-dir dist --copy-files",
"test": "npm run test:jest && npm run test:eslint",
"test:jest": "jest ./src --coverage",
"test:jest:watch": "npm run test:jest -- --watch",
"test:eslint": "eslint ./src",
"report": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:SanderV1992/Styled-Transition-Group.git"
},
"keywords": [
"react-transition-group",
"CSSTransition",
"transition",
"animation",
"animate",
"styled-components"
],
"author": "sv92",
"license": "ISC",
"devDependencies": {
"@atomix/eslint-config": "^6.1.1",
"@atomix/eslint-config-react": "^6.1.1",
"@storybook/addon-knobs": "^3.3.15",
"@storybook/addon-storysource": "^3.4.0-alpha.8",
"@storybook/react": "^3.3.15",
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-styled-name": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.0",
"eslint-config-react-app": "^2.1.0",
"eslint-import-resolver-node": "^0.3.1",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.8.0",
"extract-text-webpack-plugin": "^3.0.1",
"flow-bin": "^0.66.0",
"jest": "^20.0.4",
"jest-styled-components": "^5.0.0",
"jsdom": "11.6.2",
"jsdom-global": "3.0.2",
"npm-clean": "^1.0.3",
"npm-run-all": "^4.1.2",
"raf": "^3.4.0",
"react-loadable": "^5.3.1",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-regenerator-runtime": "^6.5.0",
"core-js": "^3.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reactstrap": "^5.0.0-beta.2",
"styled-components": "^3.1.6"
},
"peerDependencies": {
"react-transition-group": "^2.*.*",
"styled-components": "^3.*.*"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/config/setupJestTests.js",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/transition.js"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}