forked from TypeStrong/ts-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-node",
"version": "0.1.3",
"preferGlobal": true,
"description": "TypeScript execution environment for node",
"main": "dist/typescript-node.js",
"bin": {
"ts-node": "bin.js"
},
"files": [
"dist/",
"typescript-node.d.ts",
"bin.js",
"register.js",
"LICENSE"
],
"scripts": {
"lint": "# TODO",
"build": "npm run build-ts",
"build-ts": "rm -rf dist && tsc",
"test-spec": "mocha dist/**/*.spec.js -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- dist/**/*.spec.js -R spec --bail",
"test": "npm run build && npm run lint && npm run test-cov",
"bump-version": "FILE=\"src/typescript-node.ts\"; if [ \"$(git status --porcelain | grep \"^ M \"$FILE)\" = \"\" ]; then VERSION=$(node -p \"require('./package.json').version\") && sed \"s/VERSION = '\\([0-9]*\\.[0-9]*\\.[0-9]*\\)'/VERSION = '\"$VERSION\"'/\" $FILE > .tmp.ts && mv .tmp.ts $FILE && git add $FILE; fi",
"prepublish": "npm run build"
},
"pre-commit": [
"bump-version",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/typescript-node.git"
},
"keywords": [
"typescript",
"node",
"runtime",
"environment",
"ts",
"compiler"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/typescript-node/issues"
},
"homepage": "https://github.com/blakeembrey/typescript-node",
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.3.17",
"mocha": "^2.1.0",
"ntypescript": "^1.201507091536.1",
"pre-commit": "^1.0.10",
"proxyquire": "^1.7.2",
"typescript": "^1.6.0-beta"
},
"dependencies": {
"arrify": "^1.0.0",
"chalk": "^1.1.1",
"diff": "^2.1.1",
"make-error": "^1.0.2",
"minimist": "^1.2.0",
"source-map-support": "^0.3.2",
"tsconfig": "^1.0.1",
"xtend": "^4.0.0"
}
}