-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
46
47
48
{
"name": "plug-dj-api",
"version": "0.1.3",
"description": "A generic library to create plug.dj bots",
"main": "dist/index.js",
"scripts": {
"watch": "npm run build && tsc -w",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"clean": "rimraf dist",
"lint": "tslint src/*.ts -t verbose",
"test": "jest",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/minustime/plug-dj-api.git"
},
"keywords": [
"plug.dj",
"plug",
"bot",
"api"
],
"types": "dist/index.d.ts",
"author": "Vic <vic@minustime.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/joi": "14.3.3",
"@types/node": "12.12.3",
"@types/puppeteer": "1.20.2",
"jest": "^26.6.1",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"ts-jest": "^26.4.3",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.0.5"
},
"dependencies": {
"joi": "^14.0.4",
"puppeteer": "2.0.0"
},
"files": [
"dist/"
]
}