-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "@matanlurey/tts-editor",
"version": "0.1.2",
"description": "Node interface to the Tabletop Simulator External Editor API",
"scripts": {
"build": "tsc --build tsconfig.dist.json && ts-node tool/postbuild.ts",
"fix": "prettier --write . --ignore-path .gitignore && eslint --fix src/** test/**",
"lint": "prettier --ignore-path .gitignore --list-different src test && eslint src/** test/**",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matanlurey/tts-editor.git"
},
"main": "index.js",
"types": "index.d.ts",
"author": "Matan Lurey",
"keywords": [
"Tabletop",
"Simulator",
"TTS"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/shelljs": "^0.8.7",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"shelljs": "^0.8.5",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"emittery": "^0.6.0"
}
}