-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "nwjs-menu-browser",
"version": "1.0.0",
"description": "Context Menu and Menu Bar polyfill for writing NWJS compatible menus in the browser",
"main": "./dist/nwjs-menu-browser.js",
"dependencies": {
"eventemitter2": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.28.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-stream": "^4.0.0"
},
"scripts": {
"build": "./node_modules/.bin/gulp build",
"prepublish": "npm run build",
"watch": "./node_modules/.bin/webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2xAA/nwjs-menu-browser.git"
},
"keywords": [
"nwjs",
"contextmenu"
],
"author": "Sam Wray",
"license": "MIT",
"bugs": {
"url": "https://github.com/2xAA/nwjs-menu-browser/issues"
},
"homepage": "https://github.com/2xAA/nwjs-menu-browser#readme",
"module": "./src/index.js"
}