-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 918 Bytes
/
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
{
"name": "niflheim",
"version": "2.1.0",
"description": "Painlessly animate mounting/unmounting React components",
"repository": "https://github.com/benoneal/niflheim",
"main": "index.js",
"scripts": {
"prepare": "rollup -c",
"test": "jest",
"preversion": "jest",
"version": "rollup -c && git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"animate",
"transition",
"react"
],
"author": "Ben O'Neal",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@rollup/plugin-buble": "^0.21.3",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"enzyme": "^3.11.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1"
},
"peerDependencies": {
"react": "^16.8.6 || ^17.0.1"
}
}