-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.88 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
{
"private": true,
"name": "additional-roll-modifiers",
"version": "0.0.1",
"description": "Adds additional roll modifiers for Foundry VTT",
"license": "Apache 2.0",
"homepage": "https://github.com/DaiKnapz/Additional-Roll-Modifiers",
"repository": {
"type": "git",
"url": "https://github.com/DaiKnapz/Additional-Roll-Modifiers.git"
},
"bugs": {
"url": "https://github.com/DaiKnapz/Additional-Roll-Modifiers"
},
"contributors": [
{
"name": "David Knapman",
"email": "[email protected]"
}
],
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"bump-version": "gulp bumpVersion",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js --fix .",
"format": "prettier --write \"./**/*.(ts|js|json|scss)\"",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"postinstall": "husky install"
},
"dependencies": {
"gulp": "4.0.2",
"lib-wrapper": "1.0.4",
"prettier": "2.3.1",
"typescript": "4.3.4"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "9.238.1",
"@rollup/plugin-node-resolve": "13.0.0",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"chalk": "4.1.1",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"fs-extra": "10.0.0",
"gulp-dart-sass": "1.0.2",
"husky": "6.0.0",
"jest": "27.0.5",
"jest-junit": "13.0.0",
"lint-staged": "11.0.0",
"rollup": "2.52.2",
"rollup-plugin-typescript2": "0.34.1",
"semver": "7.3.5",
"ts-jest": "27.0.3",
"tslib": "2.3.0",
"yargs": "17.0.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --fix",
"*.(json|scss)": "prettier --write"
}
}