-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "oceanjenkins",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"coverage": "nyc --extension .ts --include 'src/**/*.ts' --reporter html npm test",
"clean": "rimraf dist/",
"pretest": "tsc -p ./tsconfig.test.json",
"test": "mocha temp/",
"test-jenkins": "JUNIT_REPORT_PATH=./report/report.xml mocha test/**/*.test.ts --colors --reporter mocha-jenkins-reporter",
"dev": "node ./dist/index.js",
"build": "npm run tsc",
"start": "npm run tsc && node dist/index.js",
"tsc": "tsc",
"tsc:w": "tsc --watch",
"tslint": "tslint -- src/*.ts test/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^6.2.0",
"express": "^4.16.4"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^2.4.5",
"mocha-jenkins-reporter": "^0.4.1",
"rimraf": "^2.5.2",
"ts-node": "^8.0.2",
"tslint": "^3.10.2",
"typescript": "^3.2.2"
}
}