-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "@swellaby/slashhandler",
"description": "Framework for building slash command handlers",
"version": "0.0.0-dev",
"author": "Bailey Everts",
"bugs": {
"url": "https://github.com/swellaby/slashhandler/issues"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@swellaby/tslint-config": "^3.0.1",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"babel-jest": "^26.6.3",
"eclint": "^2.8.1",
"fixpack": "^3.0.6",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-sonar-reporter": "2.0.0",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"homepage": "https://github.com/swellaby/slashhandler#readme",
"jestSonar": {
"reportPath": ".testresults/unit",
"reportFile": "sonar.xml"
},
"license": "MIT",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swellaby/slashhandler.git"
},
"scripts": {
"build": "tsc",
"commit": "commit",
"doc": "typedoc --out documentation --readme none src",
"doc:serve": "npm run doc && http-server ./documentation -p 3001",
"format": "eclint fix ./**/*",
"lint": "npm run tslint",
"release": "npm run build && semantic-release --debug",
"release:cd": "semantic-release --debug --no-ci",
"test": "jest",
"test:ci": "jest --maxWorkers=2",
"coverage": "jest --coverage --coverageThreshold={}",
"coverage:ci": "jest --coverage --maxWorkers=2",
"coverage:enforce": "jest --coverage",
"test:watch": "jest --watch",
"tsfix": "npm run tslint -- --fix",
"tslint": "tslint --project tsconfig.json -c tslint.json"
},
"typings": "src/index.ts"
}