-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "debugout.js",
"version": "1.1.0",
"description": "Generates a text file from your logs.",
"main": "dist/debugout.min.js",
"scripts": {
"build": "npm run clean && tsc && gulp",
"clean": "gulp clean",
"lint": "tslint --project tsconfig.json",
"serve": "http-server ./",
"start": "npm run build && npm run serve",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inorganik/debugout.js.git"
},
"keywords": [
"logging",
"debug",
"log",
"txt"
],
"author": "@inorganik",
"license": "MIT",
"bugs": {
"url": "https://github.com/inorganik/debugout.js/issues"
},
"homepage": "http://inorganik.github.io/debugout.js/",
"devDependencies": {
"@types/jest": "^26.0.24",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.2",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typescript": "^3.9.10",
"uglify-es": "^3.3.9"
},
"types": "./dist/debugout.d.ts"
}