forked from drcmda/mauerwerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.06 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
{
"name": "mauerwerk",
"version": "2.0.1",
"description": "⚒ Animated masonry-like grid with enter/exit transitions and maximized cells",
"main": "dist/mauerwerk",
"module": "dist/mauerwerk.es",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm run build",
"test": "echo no tests yet"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/mauerwerk.git"
},
"keywords": [
"React",
"grid",
"masonry",
"spring",
"animation"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/drcmda/mauerwerk/issues"
},
"homepage": "https://github.com/drcmda/mauerwerk#readme",
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-2": "7.0.0",
"@babel/runtime": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-annotate-pure-calls": "0.3.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.15",
"enzyme": "3.6.0",
"enzyme-adapter-react-16": "1.5.0",
"enzyme-to-json": "3.3.4",
"husky": "^1.0.0-rc.13",
"jest": "23.6.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"react": "16.5.0",
"react-dom": "16.5.0",
"rimraf": "2.6.2",
"rollup": "0.65.2",
"rollup-plugin-babel": "4.0.3"
},
"peerDependencies": {
"prop-types": "15.x.x",
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"react-measure": "^2.1.2",
"react-spring": "^5.7.2"
}
}