-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "minecraft-leaderboard",
"version": "0.0.1",
"description": "A Minecraft leaderboard which associates achievements with points",
"keywords": [
"leaderboard",
"minecraft"
],
"repository": "https://github.com/nathancashmore/leaderboard.git",
"homepage": "http://staticvoid.no-ip.info/staticvoidmods/leaderboard/",
"author": "MajorSlackmore <[email protected]>",
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"consolidate": "~0.14",
"cookie-parser": "~1.3",
"debug": "^4.1.1",
"express": "^4.17.1",
"fast-html-parser": "^1.0.1",
"fs-readfile-promise": "^3.0.0",
"getconfig": "^3.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^4.1.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"hogan.js": "~3.0",
"i18n": "^0.8.4",
"jquery": "^3.5.1",
"js-yaml": "^3.14.0",
"jsonfile": "^2.4.0",
"jsonfile-promised": "0.0.1",
"logger": "0.0.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-readfiles": "^0.2.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.16",
"pixelmatch": "^5.2.1",
"pngjs": "^5.0.0",
"properties-reader": "0.0.15",
"replay": "^2.4.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"serve-favicon": "^2.5.0",
"vinyl-source-stream": "^2.0.0",
"winston": "^2.4.4"
},
"main": "index",
"engines": {
"node": "^10"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-files": "^1.4.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.19.1",
"md5": "^2.2.1",
"mocha": "^8.0.1",
"should": "^8.2.2",
"zombie": "^6.1.4"
},
"scripts": {
"start": "npm run compile && node ./bin/www",
"compile": "gulp",
"watch": "gulp watch",
"lint": "eslint . --fix",
"pretest": "eslint . --fix && npm run compile",
"test-mocha-no-players": "mocha 'test/**/*.spec*' --grep NoPlayers --exit",
"test-mocha-with-players": "mocha 'test/**/*.spec*' --grep Default --exit",
"test-mocha-no-cache": "mocha 'test/**/*.spec*' --grep NoCache --exit",
"test-mocha-no-internet": "mocha 'test/**/*.spec*' --grep NoInternet --exit",
"test-mocha-no-data": "mocha 'test/**/*.spec*' --grep NoData --exit",
"test-mocha-other-config": "mocha 'test/**/*.spec*' --grep OtherConfig --exit",
"test-mocha-image-compare": "mocha 'test/**/*.spec*' --grep ImageCompare --exit",
"test-with-players": "NODE_ENV=test npm run test-mocha-with-players",
"test-no-players": "NODE_ENV=testNoPlayers npm run test-mocha-no-players",
"test-no-cache": "NODE_ENV=testNoCache npm run test-mocha-no-cache",
"test-no-internet": "NODE_ENV=testNoInternet npm run test-mocha-no-internet",
"test-no-data": "NODE_ENV=testNoData npm run test-mocha-no-data",
"test-other-config": "NODE_ENV=testOtherConfig npm run test-mocha-other-config",
"test-image-compare": "NODE_ENV=test npm run test-mocha-image-compare",
"test": "npm run test-with-players && npm run test-no-players && npm run test-no-cache && npm run test-no-internet && npm run test-no-data && npm run test-other-config && npm run test-image-compare",
"test-exclude-image-compare": "npm run test-with-players && npm run test-no-players && npm run test-no-cache && npm run test-no-internet && npm run test-no-data && npm run test-other-config"
}
}