forked from vkbansal/react-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
{
"name": "react-contextmenu",
"version": "2.0.0",
"description": "Context Menu implemented in React",
"main": "modules/index.js",
"keywords": [
"react",
"reactjs",
"react-component",
"contextmenu",
"rightclick"
],
"scripts": {
"eslint": "eslint ./src",
"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 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",
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"coveralls": "^2.11.13",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-config-vkbansal": "^4.1.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.14.0",
"history": "^4.4.1",
"istanbul": "^0.4.5",
"jsdom": "^9.8.2",
"mocha": "^3.1.2",
"node-libs-browser": "^2.0.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}