-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "gathertown.js",
"version": "1.0.0-beta.1",
"description": "A simple and lightweight but powerful NodeJS client for Gather Town API.",
"source": "src/index.ts",
"main": "dist/gather.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "rimraf dist && parcel build",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warengonzaga/gather.js.git"
},
"keywords": [
"gather",
"nodejs",
"api",
"wrapper",
"client"
],
"author": "Waren Gonzaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/warengonzaga/gather.js/issues"
},
"homepage": "https://github.com/warengonzaga/gather.js#readme",
"dependencies": {
"axios": "^0.24.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.0.0",
"@parcel/transformer-typescript-tsc": "^2.0.0",
"@parcel/transformer-typescript-types": "^2.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"parcel": "^2.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/*"
]
}