-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
122 lines (122 loc) · 3.87 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
{
"name": "react-tiger-transition",
"version": "4.1.2",
"description": "Animated page transitions for react.",
"main": "index.js",
"module": "esm/index.js",
"jsnext:main": "esm/index.js",
"files": [
"umd",
"cjs",
"esm",
"src",
"styles",
"index.js"
],
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"pre-push-test": "cross-env NODE_ENV=test jest --config ./jest.config.json",
"test": "jest --config ./jest.config.json",
"cover": "jest --config ./jest.config.json --coverage",
"test:watch": "npm run test -- --watch",
"tigers-doc": "webpack -p --config documentation/webpack.config.js && node documentation/tigersAPI.bundle.js",
"components-doc": "react-docgen src/ | node documentation/buildDocs.js",
"doc": "npm run components-doc && npm run tigers-doc",
"prepublishOnly": "npm run clean && npm run build",
"deploy": "cd website && npm run deploy",
"clean": "rimraf cjs umd esm styles",
"clean-empty-js": "rimraf styles/main.js styles/main.min.js",
"build": "npm run clean && rollup -c && npm run clean-empty-js",
"build:cjs": "cross-env BUILD_ENV=cjs rollup -c",
"build:esm": "cross-env BUILD_ENV=esm rollup -c",
"build:umd": "cross-env BUILD_ENV=umd rollup -c",
"build:css": "cross-env BUILD_ENV=css rollup -c && npm run clean-empty-js"
},
"author": "Pedro Bernardino Alves Moreira",
"homepage": "https://github.com/pedrobern/react-tiger-transition",
"bugs": {
"url": "https://github.com/pedrobern/react-tiger-transition/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pedrobern/react-tiger-transition.git"
},
"keywords": [
"react",
"react-router",
"transition",
"transition-group",
"tiger",
"tiger-transition",
"animation",
"transitions"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"animejs": "^3.1.0",
"autoprefixer": "^9.7.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"history": "^4.10.1",
"husky": "^4.0.0-beta.5",
"javascript-stringify": "^2.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"prop-types": "^15.7.2",
"raw-loader": "^3.1.0",
"react": "^16.9.0",
"react-docgen": "^4.1.1",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-test-renderer": "^16.11.0",
"react-transition-group": "^4.3.0",
"rimraf": "^3.0.0",
"rollup": "^1.25.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-insert": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-uglify": "^6.0.3",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"peerDependencies": {
"react": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-transition-group": "^4.3.0"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run pre-push-test"
}
},
"publishConfig": {
"access": "public"
},
"sideEffects": ["**/*.css"]
}