forked from zekesonxx/wow-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "wow-better-cli",
"version": "0.1.11",
"description": "World Of Warcraft addon downloader and manager",
"main": "dist/cli.js",
"dependencies": {
"archy": "^1.0.0",
"babel-polyfill": "^6.23.0",
"cheerio": "^1.0.0-rc.1",
"cli": "^1.0.1",
"decompress-zip": "^0.3.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"npmlog": "^4.1.0",
"progress": "^2.0.0",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"simple-git": "^1.73.0",
"temp": "^0.8.3"
},
"scripts": {
"test": "npm run build && npm run build_tests && mocha ./tests_dist/test",
"build": "babel src -d dist",
"build_tests": "babel tests -d tests_dist",
"dist": "npm run build && node bin/wow",
"dev": "npm run build && node dist/cli.js",
"clean": "rm -rf dist/ && rm -rf tests_dist",
"prepublishOnly": "npm run clean && npm run build"
},
"files": [
"dist",
"bin"
],
"bin": {
"wow": "./bin/wow",
"wow-better-cli": "./bin/wow"
},
"repository": {
"type": "git",
"url": "https://github.com/DayBr3ak/wow-better-cli.git"
},
"keywords": [
"wow",
"world",
"warcraft",
"downloader",
"cli",
"addons",
"addon"
],
"author": "Zeke Sonxx <github.com/zekesonxx>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DayBr3ak/wow-better-cli/issues"
},
"homepage": "https://github.com/DayBr3ak/wow-better-cli",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2"
}
}