-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.07 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
{
"name": "rolladvantage-token-stamp-2-foundry",
"title": "Token Stamp 2 for Foundry VTT - RollAdvantage.com",
"version": "1.2.1",
"description": "Integration for Token Stamp 2 on RollAdvantage.com",
"url": "https://github.com/ChadKeating/rolladvantage-token-stamp-2-foundry",
"manifest": "https://raw.githubusercontent.com/ChadKeating/rolladvantage-token-stamp-2-foundry/master/dist/module.json",
"download": "https://github.com/ChadKeating/rolladvantage-token-stamp-2-foundry/raw/master/releases/tokenstamp2-foundry-module-latest.zip",
"readme": "https://github.com/ChadKeating/rolladvantage-token-stamp-2-foundry/blob/master/releases/README.md",
"changelog": "https://github.com/ChadKeating/rolladvantage-token-stamp-2-foundry/blob/master/releases/CHANGELOG.md",
"bugs": "https://github.com/ChadKeating/rolladvantage-token-stamp-2-foundry/issues",
"allowBugReporter": true,
"minimumCoreVersion": "0.6.5",
"compatibleCoreVersion": "0.9.9",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"build": "gulp build",
"release": "gulp release"
},
"author": "Chad Keating [Sir Everard#1198]",
"authors": [
{
"name": "Chad Keating",
"discord": "Sir Everard#1198"
}
],
"license": "MIT",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-foundry-vtt": "0.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-zip": "^5.0.2",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"rollup": "^1.25.2",
"rollup-plugin-terser": "^5.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"{src|test}/**/*.js": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {}
}