-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.52 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
{
"name": "react-pointable",
"version": "1.1.3",
"description": "Declarative pointer event binding. Works well alongside PEP.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "npm test && npm run build",
"release": "np"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"ie >= 10"
]
}
}
],
"react"
]
},
"keywords": [
"pointer",
"events",
"pep",
"react"
],
"author": {
"name": "Caleb Miller",
"email": "[email protected]",
"url": "http://caleb-miller.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MilllerTime/react-pointable.git"
},
"bugs": {
"url": "https://github.com/MilllerTime/react-pointable/issues"
},
"homepage": "https://github.com/MilllerTime/react-pointable",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"jest": "^21.2.1",
"np": "^2.14.1",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.0.0-0 || ^16.0.0-0"
}
}