-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
88 lines (88 loc) · 2.21 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
{
"name": "react-magic-hat",
"version": "1.1.1",
"description": "A kind of UI engine",
"main": "dist/magicHat.js",
"module": "dist/magicHat.esm.js",
"source": "src/index.js",
"size-limit": [
{
"limit": "8 KB",
"path": "dist/magicHat.js"
},
{
"limit": "8 KB",
"path": "dist/magicHat.esm.js"
}
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"size": "size-limit",
"prepare": "npm run build",
"test": "jest",
"test:updateSnapshots": "jest --updateSnapshot"
},
"author": "Albino Tonnina <[email protected]> (http://www.albinotonnina.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/albinotonnina/react-magic-hat.git"
},
"keywords": [
"react",
"react-dom",
"animation",
"flip",
"ui",
"react-component",
"stack",
"web-animations"
],
"peerDependencies": {
"react": ">=0.13.x <=16.x.x",
"react-dom": ">=0.13.x <=16.x.x"
},
"dependencies": {},
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.18.2",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"prettier-eslint": "^8.8.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-flip-move": "https://github.com/albinotonnina/react-flip-move.git#push_not_splice",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-uglify": "^3.0.0",
"size-limit": "^0.17.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "<rootDir>/test.setup.js"
}
}