forked from vkbansal/react-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "react-contextmenu",
"version": "1.6.3",
"description": "Context Menu implemented in React",
"main": "modules/index.js",
"keywords": [
"react",
"reactjs",
"react-component",
"contextmenu",
"rightclick"
],
"scripts": {
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha test/.setup.js test/**/*-test.js -- --reporter dot",
"unit-test": "mocha test/.setup.js test/**/*-test.js",
"clean": "rimraf -rf ./dist && rimraf -rf ./modules",
"start": "node server.js",
"dist": "webpack --progress --profile --colors",
"module": "babel src --out-dir modules",
"build": "npm run test && npm run clean && npm run dist && npm run module",
"examples": "webpack --config examples.config.js --progress --profile --colors",
"watch": "./node_modules/.bin/webpack --config examples.config.js --progress --profile --colors --watch",
"prepublish": "npm run build"
},
"author": "Vivek Kumar Bansal <[email protected]>",
"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": {
"classnames": "^2.2.5",
"invariant": "^2.2.1",
"lodash.isobject": "^3.0.2",
"object-assign": "^4.1.0",
"react-overlays": "^0.6.3",
"redux": "^3.5.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"coveralls": "^2.11.13",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-vkbansal": "^3.2.0",
"eslint-plugin-react": "^6.2.2",
"express": "^4.14.0",
"history": "^3.0.0",
"istanbul": "^0.4.5",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"node-libs-browser": "^1.0.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.8.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.7.0",
"webpack-hot-middleware": "^2.12.2"
}
}