-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.23 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
{
"name": "react-connected-transition",
"version": "1.1.4",
"description": "A React component that passes along data between leaving and entering components in order to easily implement shared element transitions.",
"main": "dist/react-connected-transition.js",
"module": "dist/react-connected-transition.m.js",
"umd:main": "dist/react-connected-transition.umd.js",
"files": [
"src",
"dist"
],
"scripts": {
"bump": "standard-version",
"build": "microbundle --name ReactConnectedTransition --format es,umd,cjs --sourcemap false --globals react=React --compress false",
"release": "npm run test && npm run build && npm run bump && git push --follow-tags && npm publish",
"test": "jest --coverage && npm run lint",
"test:watch": "jest --watch",
"format": "prettier --write \"{.,src/**}/*.js\"",
"lint": "eslint . --ext .js --fix",
"lint-staged": "lint-staged"
},
"mangle": {
"regex": "^_"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint",
"git add"
]
},
"peerDependencies": {
"react": "15.x || 16.x"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"eslint": "5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"lint-staged": "^7.2.2",
"microbundle": "^0.7.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-test-renderer": "^16.4.2",
"standard-version": "^4.4.0",
"uglify-js": "^3.4.8"
},
"author": "Onno Visser <[email protected]>",
"homepage": "https://github.com/onnovisser/react-connected-transition#readme",
"license": "MIT",
"repository": "onnovisser/react-connected-transition.git",
"keywords": [
"react",
"animation",
"motion",
"transition",
"connected",
"shared-element"
],
"bugs": {
"url": "https://github.com/onnovisser/react-connected-transition/issues"
}
}