This repository was archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
124 lines (124 loc) · 3.86 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
{
"name": "react-css-transition",
"version": "0.7.4",
"description": "CSS Transition Component for React",
"homepage": "https://github.com/wikiwi/react-css-transition",
"repository": {
"type": "git",
"url": "git+https://github.com/wikiwi/react-css-transition.git"
},
"bugs": {
"url": "https://github.com/wikiwi/react-css-transition/issues"
},
"files": [
"dist",
"lib",
"cjs"
],
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"main": "./cjs/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"docs:dev": "cd ./docs && webpack-dev-server --host 0.0.0.0",
"docs:build": "cd ./docs && cross-env NODE_ENV=production webpack",
"docs:deploy": "npm run docs:build && gulp docs:deploy",
"all": "npm run lint && npm run test && npm run build && npm run docs:build",
"build": "gulp && webpack && cross-env BUILD_MINIFIED=true webpack",
"clean": "rm -r -f dist lib cjs coverage",
"release": "npm version -m 'react-css-transition release %s'",
"lint": "gulp lint",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc mocha --opts mocha.opts",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "cross-env NODE_ENV=integration karma start",
"test:integration:watch": "cross-env NODE_ENV=integration karma start --single-run=false"
},
"engines": {
"node": ">=4"
},
"keywords": [
"react",
"component",
"transitiongroup",
"transition",
"animation",
"tween"
],
"author": "Chi Vinh Le and contributors (https://github.com/wikiwi/react-css-transition/graphs/contributors)",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/enzyme": "^2.5.37",
"@types/jsdom": "^2.0.29",
"@types/mocha": "^2.2.32",
"@types/react": "^15.0.10",
"@types/sinon": "^1.16.31",
"awesome-typescript-loader": "^3.0.0-beta.18",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-optimize": "^1.0.1",
"cash-rm": "^0.2.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-in-js-loader": "^0.1.2",
"css-loader": "^0.26.1",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-gh-pages": "^0.5.4",
"gulp-jsonlint": "^1.1.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.2.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.3",
"gulp-yaml-validate": "^1.0.2",
"highlight.js": "^9.9.0",
"inline-style-prefixer": "^2.0.5",
"istanbul-instrumenter-loader": "^1.1.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-remap-coverage": "^0.1.3",
"karma-webpack": "^2.0.2",
"merge2": "^1.0.2",
"mocha": "^3.1.2",
"nyc": "^10.1.2",
"postcss-js": "^0.2.0",
"postcss-loader": "^1.2.2",
"postcss-nesting": "^2.3.1",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-icons": "^2.2.3",
"react-syntax-highlighter": "^4.0.1",
"sinon": "^2.0.0-pre.4",
"style-loader": "^0.13.1",
"ts-node": "^2.0.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"react-transition-group": "^1.0.0",
"reassemble": "^0.5.6"
}
}