-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "foei",
"version": "0.7.0",
"description": "Browser extension that helps you playing Forge of Empires, saving your time and (thereby) giving you an advantage over other players.",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/veger/foei.git"
},
"keywords": [
"chrome-extension",
"game",
"forge-of-empires"
],
"author": {
"name": "Maarten Bezemer",
"email": "maarten.bezemer@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/veger/foei/issues"
},
"homepage": "https://github.com/veger/foei#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-momentjs": "0.0.10",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"sinon": "^9.0.1",
"sinon-chrome": "^3.0.1",
"sinon-stub-promise": "^4.0.0"
},
"scripts": {
"lint": "eslint *.js background/*.js ui/*.js",
"release": "if [ -z \"$KEY\" ]; then echo \"\nERROR: KEY missing\n\n\"; exit 1; fi && rm -rf foei.crx dist && mkdir dist && cp -r background images ui ajax_inspect.js inject.js LICENSE manifest.json options* dist && google-chrome-unstable --pack-extension=dist --pack-extension-key=$(readlink -f $PWD/$KEY) && mv dist.crx foei.crx",
"test": "nyc --hook-run-in-this-context --reporter text --reporter lcov mocha --require test/setup.js \"test/specs/**/*.test.js\""
}
}