-
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.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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": "matrix-reduction",
"version": "1.0.0",
"description": "POC matrix reduction program, trying out some numerics in node",
"repository": {
"type": "git",
"url": "git@github.com:AlexanderPruss/MatrixReduction.git"
},
"bin": {
"matrix-stuff": "dist/Cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/Cli.js",
"devstart": "nodemon dist/Cli.js",
"test": "tsc && mocha 'dist/**/*.spec.js'",
"test-clean": "rm -rf dist && npm run build && npm run test",
"test-report": "touch report.xml && JUNIT_REPORT_PATH=report.xml mocha 'dist/**/*.spec.js' --colors --reporter mocha-jenkins-reporter --timeout 20000 --exit",
"tsc": "tsc"
},
"author": "Alexander Pruss",
"license": "MIT",
"dependencies": {
"nodemon": "^1.18.7",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"mocha-jenkins-reporter": "^0.4.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.1"
}
}