-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
{
"name": "swarmmind-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"start": "node dist/index.js",
"build": "npm run build-ts",
"test": "npm run build-ts && npm run build-tests && npm run run-tests",
"coverage": "npm run build-ts && npm run build-tests && npm run test-coverage",
"try": "npm run build && npm run start",
"build-tests": "tsc --p tsconfig-tests.json",
"run-tests": "mocha dist/tests/**/*.js --reporter mochawesome --reporter-options reportDir=dist/test_results",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha dist/tests/**/*.js",
"build-ts": "tsc",
"watch-ts": "tsc -w"
},
"dependencies": {
"assert": "^1.4.1",
"express": "^4.16.3",
"socket.io": "^2.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/es6-shim": "^0.31.36",
"@types/express": "^4.11.1",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.6",
"@types/socket.io": "^1.4.33",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"mochawesome": "^2.3.1",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}