-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-touch-position",
"version": "2.0.2",
"description": "A React component that decorates its children with touch coordinates, plotted relative to itself.",
"repository": {
"type": "git",
"url": "https://github.com/ethanselzer/react-touch-position.git"
},
"keywords": [
"react-touch",
"react-touchmove",
"react-touch-drag",
"react-touch-pan",
"react-touch-coordinates",
"react-tap-position",
"react-position",
"react-point",
"react-pan",
"react-tap",
"touch-pan-position",
"touch-position",
"touch-coordinates",
"touchmove"
],
"author": "Ethan Selzer <ethanselzer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethanselzer/react-touch-position/issues"
},
"homepage": "https://github.com/ethanselzer/react-touch-position#readme",
"main": "dist/ReactTouchPosition.js",
"files": [
"dist",
"LICENCE"
],
"options": {
"mocha": "--require scripts/mocha_runner test/**/*.spec.js"
},
"scripts": {
"prepublish": "babel --plugins 'transform-es2015-modules-umd' src --out-dir ./dist",
"prepublish-cjs": "babel src --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"test-cov": "gulp test:coverage",
"test-coveralls": "gulp test:coveralls"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^3.16.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-react": "^6.10.0",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"jsdom": "^9.11.0",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"nodemon": "^1.9.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0",
"react-dom": "~0.14.8 || ^15.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"lodash.omit": "^4.5.0"
}
}