-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "@open-website-status/api",
"version": "1.3.2",
"description": "TypeScript API client for Open Website Status",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build",
"lint": "eslint -c .eslintrc.json --ext .ts src/**",
"lint:fix": "eslint -c .eslintrc.json --ext .ts src/** --fix",
"release": "release-it"
},
"author": "Dominik Korsa <dominik.korsa@gmail.com> (https://github.com/dominik-korsa)",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.14",
"@types/socket.io-client": "^1.4.33",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"release-it": "^13.6.5",
"typescript": "^3.9.5"
},
"dependencies": {
"socket.io-client": "^2.3.0",
"typed-event-emitter": "^2.0.0"
},
"repository": "github:open-website-status/api-js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}