-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.54 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
{
"name": "enable-transition",
"version": "1.0.2",
"description": "Make display=none support gradients",
"main": "dist/enable-transition.min",
"module": "lib/EnableTransition.js",
"typings": "lib/EnableTransition.d.ts",
"scripts": {
"test": "jest --colors -u --coverage",
"lint": "eslint src --quiet",
"start": "cd demo && node run.js",
"build": "cd build/scripts &&node index.js compile",
"unpkg": "cd build/scripts &&node index.js unpkg",
"publishNPM": "cd build/scripts &&node index.js publish",
"doc": "typedoc src/EnableTransition.tsx"
},
"homepage": "https://github.com/robertpanvip/enable-transition.git",
"repository": {
"type": "git",
"url": "https://github.com/robertpanvip/enable-transition.git"
},
"bugs": {
"url": "https://github.com/robertpanvip/enable-transition/issues"
},
"sideEffects": false,
"keywords": [
"transition",
"display=none",
"visibility=hidden"
],
"files": [
"dist",
"lib"
],
"author": "pan",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.13.2",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.11.2",
"@types/enzyme": "^3.10.5",
"@types/gulp": "^4.0.7",
"@types/gulp-typescript": "^2.13.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.5",
"@types/raf": "^3.4.0",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"any-shell-escape": "latest",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"commander": "^6.1.0",
"compass": "^0.1.1",
"compression-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"css-split-webpack-plugin": "^0.2.6",
"del": "latest",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^6.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-git": "^2.10.1",
"gulp-logger": "^0.0.2",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^4.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"hoist-non-react-statics": "^3.3.2",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"raf": "^3.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"sinon": "^9.0.2",
"style-loader": "^1.2.1",
"typedoc": "^0.20.32",
"typescript": "^3.9.7",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "latest",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpackbar": "^4.0.0"
},
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}