-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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
{
"name": "xenobot-scripts",
"description": "Official Tibia Cavebot Scripts for XenoBot",
"homepage": "http://xenobot.net",
"repository": {
"type": "git",
"url": "git+https://github.com/OXGaming/scripts.git"
},
"author": {
"name": "Cavitt Glover"
},
"bugs": {
"url": "https://github.com/OXGaming/scripts/issues"
},
"devDependencies": {
"archiver": "^0.16.0",
"babel": "5.8.23",
"colors": "^1.1.2",
"concat-files": "^0.1.0",
"debounce": "^1.0.0",
"del": "^2.0.2",
"fs-extra": "^0.24.0",
"gaze": "^0.5.1",
"glob": "^5.0.15",
"glob-all": "^3.0.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"open": "0.0.5",
"read-multiple-files": "^1.1.1",
"replace": "^0.3.0"
},
"scripts": {
"clean": "babel-node -e \"require('./tools/clean')().catch(err => console.error(err.stack))\"",
"build": "babel-node --max_old_space_size=2000000 -e \"require('./tools/build')().catch(err => console.error(err.stack))\"",
"bundle": "babel-node -e \"require('./tools/bundle')().catch(err => console.error(err.stack))\"",
"start": "babel-node -e \"require('./tools/start')().catch(err => console.error(err.stack))\"",
"test": "babel-node -e \"require('./tools/test')().catch(err => console.error(err.stack))\"",
"api": "babel-node -e \"require('./tools/api')().catch(err => console.error(err.stack))\"",
"deploy": "babel-node -e \"require('./tools/deploy')().catch(err => console.error(err.stack))\""
},
"dependencies": {
"vinyl-fs": "^2.3.4",
"vinyl-ftp": "^0.4.5"
}
}