-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
72 lines (72 loc) · 1.67 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
{
"name": "react-rotation",
"version": "1.3.0",
"description": "React rotation component",
"main": "index.es5.js",
"jsnext:main": "index.js",
"files": [
"index.js",
"index.es5.js"
],
"scripts": {
"test": "standard && ava",
"prepublish": "babel index.js --out-file index.es5.js",
"postpublish": "rimraf index.es5.js && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/react-rotation.git"
},
"author": "Andrey Polischuk <[email protected]> (https://andrepolischuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrepolischuk/react-rotation/issues"
},
"homepage": "https://github.com/andrepolischuk/react-rotation",
"keywords": [
"react",
"image",
"rotation",
"wheel",
"mouse",
"touch"
],
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.1.0"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"enzyme": "^2.3.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"rimraf": "^2.5.2",
"standard": "^10.0.3"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}