-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.95 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
{
"name": "fvtt-module-inactive-tokens",
"version": "1.0.0",
"description": "Foundry VTT Module - Inactive Tokens",
"author": "jagoe",
"license": "GPL-3.0-or-later",
"main": "index.js",
"scripts": {
"commit": "cz",
"build": "gulp build",
"build:dev": "gulp build:dev",
"lint": "eslint .",
"lint:staged": "eslint $(git diff --staged --name-status $(git branch --show-current) | grep -P '^(?!D)' | awk '{print $NF}' | grep -E \"(.js$|.ts$)\")",
"alex:staged": "alex $(git diff --staged --name-status $(git branch --show-current) | grep -P '^(?!D)' | awk '{print $NF}' | grep -E \"(.txt$|.md$)\")",
"test": "TS_NODE_PROJECT=./test/tsconfig.json mocha --config ./.mocharc.js",
"test:coverage": "nyc yarn test",
"test:coverage:lcov": "nyc --reporter=lcov yarn test",
"postinstall": "is-ci || husky install"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt": "^13.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@league-of-foundry-developers/foundry-vtt-types": "^0.8.9-2",
"@types/chai": "^4.2.14",
"@types/gulp": "^4.0.8",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.4",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"alex": "^9.1.0",
"chai": "^4.2.0",
"commitizen": "^4.2.3",
"del": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gulp": "^4.0.2",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"source-map-support": "^0.5.19",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"webpack": "^5.18.0"
},
"dependencies": {}
}