-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "chestnut-lite",
"version": "0.0.0",
"author": "Florent Benoit",
"description": "bot for che",
"license": "MIT",
"private": true,
"dependencies": {
"@octokit/rest": "^16.28.7"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/cron": "^1.2.1",
"@types/hubot": "^2.19.0",
"@types/mocha": "^5.2.7",
"@types/request": "^2.0.1",
"chai": "^4.1.2",
"codecov": "^3.5.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"ts-mockito": "^2.2.2",
"ts-node": "^8.3.0",
"tslint": "^5.7.0",
"typescript": "^3.5.3",
"typescript-formatter": "^7.2.2"
},
"scripts": {
"ci": "yarn run build && yarn run report",
"build": "yarn run test && yarn run format-code && yarn run compile && yarn run tslint",
"report": "nyc report --reporter=json && codecov -f coverage/*.json",
"compile": "tsc --project .",
"format-code": "tsfmt -r",
"tslint": "tslint --fix src/*.ts src/**/*.ts",
"test": "nyc mocha",
"testold": "mocha --compilers ts:ts-node/register tests/*test.ts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}