-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 2.02 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "typeinclude",
"author": "NexusTools",
"homepage": "https://www.nexustools.net/projects#typeinclude",
"version": "0.6.4",
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/NexusTools/node-typeinclude/blob/master/LICENSE.md"
}
],
"description": "node-typeinclude makes it easy to include typescript files into your nodejs project at runtime, without the need to recompile every time you change something. And provides a few extensions to the TypeScript language via a pre-processor.",
"keywords": [
"typescript",
"NexusTools",
"integration",
"nosejs",
"compiler",
"language",
"javascript",
"macros",
"resolve",
"loader",
"class"
],
"bugs": {
"url": "https://github.com/NexusTools/node-typeinclude/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-typeinclude.git"
},
"main": "index.js",
"scripts": {
"test": "mocha --bail --require ./test/support/env --reporter spec --timeout 40000 --globals __typeinclude__ --check-leaks test/",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --bail --reporter spec test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --reporter spec test/"
},
"bin": {
"tsc+": "./bin/tsc+",
"tscac": "./bin/tscac",
"nodets": "./bin/nodets"
},
"engines": {
"node": ">=0.11.12",
"npm": ">=1.3.8"
},
"dependencies": {
"nulllogger": "^0.2.4",
"node-paths": "^0.2.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"typescript": "^1.8.10",
"istanbul": "^0.4.3",
"mocha": "^2.5.3"
}
}