-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "guild-emblem-generator",
"displayName": "Guild Emblem Generator",
"version": "1.5.6",
"description": "A tool for building World of Warcraft guild emblems using node-canvas.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"test-full": "jest --config ./util/jest.config.js",
"test-ci": "jest --ci --reporters=default --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamJeeves/Guild-Emblem-Generator.git"
},
"directories": {
"example": "examples",
"test": "tests"
},
"keywords": [
"wow",
"world",
"of",
"warcraft",
"blizzard"
],
"author": "4lch4 @ TeamJeeves",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamJeeves/Guild-Emblem-Generator/issues"
},
"homepage": "https://github.com/TeamJeeves/Guild-Emblem-Generator#readme",
"dependencies": {
"canvas": "^2.6.0",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"standard": "14.3.1"
},
"standard": {
"ignore": [
"*.test.js"
]
}
}