forked from AlCalzone/virtual-tsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "virtual-tsc",
"version": "0.4.6",
"description": "Provides means to compile TypeScript code in memory",
"main": "build/index.js",
"types": "./build/index.d.ts",
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"license": "MIT",
"scripts": {
"compile": "node node_modules/typescript/bin/tsc",
"watch": "npm run compile -- --watch",
"test:ts": "node node_modules/mocha/bin/mocha --require ts-node/register --require source-map-support/register src/**/*.test.ts",
"test": "npm run test:ts",
"coverage": "node node_modules/nyc/bin/nyc npm run test:ts",
"lint:ts": "lint:ts",
"lint": "npm run lint:ts \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/virtual-tsc.git"
},
"bugs": {
"url": "https://github.com/AlCalzone/virtual-tsc/issues"
},
"homepage": "https://github.com/AlCalzone/virtual-tsc#readme",
"peerDependencies": {
"@types/node": "*",
"typescript": ">=2.0.0"
},
"dependencies": {
"colors": "^1.3.0",
"debug": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.34",
"@types/sinon": "^4.0.0",
"chai": "^4.1.2",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"sinon": "^4.1.2",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": ">=2.8.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}