-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "ts-babel-node",
"version": "1.1.1",
"description": "TypeScript + Babel execution environment and REPL for node",
"repository": "danielmoore/ts-babel-node",
"author": "Daniel Moore <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"ts",
"babel",
"compiler",
"runtime"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "lab -m 10000"
},
"bin": {
"ts-babel-node": "bin/ts-babel-node.js"
},
"peerDependencies": {
"ts-node": ">=0.9",
"typescript": "*"
},
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/node": "^6.0.45",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-polyfill": "^6.9.1",
"bluebird": "^3.4.0",
"code": "^4.0.0",
"concat-stream": "^1.5.1",
"convert-source-map": "^1.3.0",
"error-stack-parser": "^1.3.6",
"eslint": "^3.8.1",
"lab": "^13.1.0",
"merge2": "^1.0.2",
"ts-node": "^3.0.6",
"tslint": "^3.15.1",
"tslint-eslint-rules": "^2.1.0",
"typescript": "^2.0.3"
},
"dependencies": {
"babel-core": "^6.9.1",
"babel-preset-env": "^1.5.2",
"source-map-support": "^0.4.0"
}
}