-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "legit-context-menu",
"version": "0.0.3",
"description": "a simple context-menu component that replaces a native right-click",
"main": "lib/context.js",
"scripts": {
"compile": "babel src --stage 0 --out-dir lib;",
"prepublish": "babel src --stage 0 --out-dir lib;",
"dev-server": "webpack-dev-server --config ./example/server.config.js --hot --port 8881",
"example": "webpack --config ./example/example.config.js",
"test": "mocha --opts ./mocha.opts; eslint ./src/ --ext .jsx,.js --global require,exports:true"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/legitcode/context-menu.git"
},
"keywords": [
"react-component",
"context",
"menu",
"react",
"table",
"react-table",
"bootstrap"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/legitcode/context-menu/issues"
},
"homepage": "https://github.com/legitcode/context-menu#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"expect": "^1.8.0",
"mocha": "^2.2.5",
"mocha-babel": "^3.0.0",
"node-jsdom": "^3.1.5",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"react": "^0.13.3"
}
}