This repository was archived by the owner on Jun 7, 2019. It is now read-only.
forked from vkbansal/react-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.5 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.5 KB
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
90
91
92
{
"name": "@codemotion/react-contextmenu",
"version": "1.0.4",
"description": "Context Menu implemented in React",
"main": "src/index.js",
"typings": "src/index.d.ts",
"keywords": [
"react",
"reactjs",
"react-component",
"contextmenu",
"rightclick"
],
"scripts": {
"lint": "eslint ./src ./examples",
"test": "npm run lint && npm run test:only",
"test:only": "jest --no-cache --verbose --coverage",
"test:dev": "jest --watchAll --no-cache --verbose --coverage",
"prepare": "npm run test"
},
"author": "Vivek Kumar Bansal <contact@vkbansal.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vkbansal/react-contextmenu.git"
},
"bugs": {
"url": "https://github.com/vkbansal/react-contextmenu/issues"
},
"homepage": "https://github.com/vkbansal/react-contextmenu",
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"object-assign": "^4.1.0"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~7.2.1",
"babel-jest": "~21.2.0",
"babel-loader": "~7.1.1",
"babel-minify-webpack-plugin": "~0.2.0",
"babel-register": "~6.26.0",
"coveralls": "~3.0.0",
"cross-env": "~5.0.5",
"css-loader": "~0.28.7",
"enzyme": "~3.1.0",
"enzyme-adapter-react-16": "~1.0.1",
"enzyme-to-json": "~3.1.1",
"eslint": "~3.19.0",
"eslint-config-vkbansal": "~5.2.1",
"eslint-import-resolver-webpack": "~0.8.3",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-react": "~7.0.0",
"extract-text-webpack-plugin": "~3.0.1",
"history": "~4.6.1",
"html-webpack-plugin": "~2.30.1",
"http-server": "~0.10.0",
"jest": "~21.2.1",
"jest-cli": "^21.2.1",
"jsdom": "~11.3.0",
"prop-types": "~15.6.0",
"react": "~16.0.0",
"react-dom": "~16.0.0",
"react-router-dom": "~4.2.2",
"react-test-renderer": "~16.0.0",
"rimraf": "~2.6.2",
"style-loader": "~0.19.0",
"webpack": "~3.6.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/.setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"roots": [
"<rootDir>/tests"
],
"collectCoverageFrom": [
"**/src/**/*.js"
]
}
}