This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "react-aim",
"author": "Gabriel Bull",
"version": "0.2.3",
"description": "Determine the cursor aim for triggering mouse events.",
"main": "./lib/index.js",
"types": "./index.d.ts",
"keywords": [
"react",
"react-component",
"amazon",
"submenu",
"dropdown",
"menu",
"aim",
"cursor",
"target",
"buffer",
"context",
"menu",
"menu-aim",
"jquery-menu-aim",
"react-menu-aim"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gabrielbull/react-aim.git"
},
"scripts": {
"eslint": "./node_modules/.bin/eslint ./src ./test",
"prebuild": "npm run eslint && npm run test",
"build": "./node_modules/.bin/babel ./src --out-dir ./lib",
"build-publish": "npm run build && npm publish",
"playground": "./node_modules/.bin/webpack-dev-server --config ./playground/webpack.config.js --colors --inline --port 3000",
"test": "./node_modules/.bin/mocha test"
},
"peerDependencies": {
"prop-types": "^15.0 || ^16.0",
"react": "^15.0 || ^16.0",
"react-dom": "^15.0 || ^16.0"
},
"devDependencies": {
"@types/react": "^16.3.17",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"webpack": "^4.12.0",
"webpack-dev-server": "^3.1.4"
}
}