-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "apitests",
"version": "1.0.0",
"description": "Tests for the nmos-server REST-API",
"main": "index.js",
"scripts": {
"build": "tslint test/**/*.ts && tsc",
"clean": "rimraf dist/*",
"pretest": "tsc",
"test": "mocha --recursive dist/",
"test-xunit": "mocha --recursive -R mocha-jenkins-reporter --reporter-options junit_report_path=test-reports.xml dist/",
"tsc:w": "tsc -w"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/Lawo/nmos-server-api-tests.git"
},
"license": "Boost Software License",
"dependencies": {
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.29",
"@types/chai-json-schema": "^1.4.2",
"@types/load-json-file": "^2.0.5",
"@types/mocha": "^2.2.33",
"@types/tv4": "^1.2.28",
"@types/ws": "0.0.37",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chai-json-schema": "^1.4.0",
"load-json-file": "^2.0.0",
"mocha": "^3.1.2",
"mocha-jenkins-reporter": "^0.3.1",
"typescript": "^2.0.10",
"ws": "^3.3.1"
},
"devDependencies": {
"rimraf": "^2.5.4",
"tslint": "^4.0.1"
}
}