-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 846 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 846 Bytes
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
{
"name": "ProfessorX",
"version": "0.1.0",
"description": "Typescript mutation testing service",
"author": "James Read, Michael Michaelides",
"license": "MIT",
"dependencies": {
"@types/node": "^8.0.17",
"mochawesome": "^2.3.0",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typings": "^2.1.1"
},
"scripts": {
"test": "mocha --opts ./mocha.opts",
"build": "npm run test && npm run lint",
"test:watch": "mocha --opts ./mocha.opts --watch",
"lint": "tslint ./src/**/*.ts",
"start": "ts-node ./src/index.ts",
"ts-node": "ts-node"
},
"repository": {
"type": "git",
"url": "https://github.com/adamdallis/ProfessorX"
}
}