-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "react-animate-on-change",
"version": "2.2.0",
"description": "Animate your components on state change",
"main": "index.js",
"scripts": {
"build": "tsc",
"build-example": "cd example && webpack",
"postversion": "npm run build && npm run build-example && git add . && git commit --amend --no-edit",
"postpublish": "git push && git push --tags",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arve0/react-animate-on-change.git"
},
"keywords": [
"react-component",
"react",
"animate",
"animation",
"css"
],
"author": "Arve Seljebu",
"license": "MIT",
"bugs": {
"url": "https://github.com/arve0/react-animate-on-change/issues"
},
"homepage": "https://github.com/arve0/react-animate-on-change#readme",
"devDependencies": {
"@types/node": "^10.3.1",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.2",
"debug": "^3.1.0",
"mocha": "^6.2.3",
"puppeteer-firefox": "^0.5.0",
"react": ">15.0.0",
"react-dom": ">15.0.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"ts-loader": "^4.4.1",
"typescript": "^2.9.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.0.3"
},
"peerDependencies": {
"react": ">15.0.0"
}
}