forked from cheeseformice/transformice.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "@cheeseformice/transformice.js",
"version": "1.2.0",
"description": "Node.js client for Transformice with full Typescript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "tsc --watch",
"lint:check": "eslint .",
"prettify": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cheeseformice/transformice.js.git"
},
"keywords": [
"transformice"
],
"author": "SuspiciousLookingOwl",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cheeseformice/transformice.js/issues"
},
"homepage": "https://github.com/Cheeseformice/transformice.js#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsesc": "^3.0.3",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"jsesc": "^3.0.2"
}
}