-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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": "web-minecraft-crafter",
"version": "1.0.0",
"description": "A web interface to minecraft crafter",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify main.js -o bundle.js",
"gh-publish": "git checkout gh-pages && git merge master && npm run build && git add -f bundle.js && git commit -m 'publish' ; git push origin gh-pages && git checkout master",
"start":"beefy main.js:bundle.js 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rom1504/web-minecraft-crafter.git"
},
"keywords": [
"web",
"minecraft",
"craft"
],
"author": "Romain Beaumont <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rom1504/web-minecraft-crafter/issues"
},
"homepage": "https://github.com/rom1504/web-minecraft-crafter#readme",
"dependencies": {
"inventory-window": "^1.0.0",
"jquery": "^3.5.0",
"jquery-autocomplete": "^1.2.1",
"jquery-ui": "^1.10.5",
"minecraft-assets": "^1.0.0",
"minecraft-crafter": "^1.1.0",
"query-string": "^3.0.3"
},
"devDependencies": {
"beefy": "^2.1.6",
"browserify": "^13.0.0"
}
}