-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "node-groupme",
"version": "4.1.0",
"description": "The only GroupMe API library that isn't a million years old.",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && tsc -p .",
"docs": "typedoc --theme ./node_modules/typedoc-neo-theme/bin/default",
"prepare": "husky install",
"prepublishOnly": "npm run compile",
"test": "mocha \"tests/**/*.js\" --forbid-only --bail --recursive --require tests/hooks.js",
"watch": "tsc -w -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupme-js/node-groupme.git"
},
"keywords": [
"groupme",
"api",
"node-groupme",
"microsoft"
],
"author": "Peter Currie <peterdcurrie@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/groupme-js/node-groupme/issues"
},
"homepage": "https://groupme.js.org",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.14.27",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"mocha": "^9.1.4",
"msw": "^0.39.2",
"prettier": "^2.4.1",
"semantic-release": "^19.0.2",
"typedoc": "^0.21.9",
"typedoc-neo-theme": "^1.1.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/collection": "^0.1.6",
"groupme-api-types": "^2.1.0",
"node-fetch": "^2.6.1",
"faye": "^1.4.0",
"ws": "^8.1.0"
},
"files": [
"src/",
"dist/",
"typings/"
],
"types": "typings/"
}