forked from dpogue/tsify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "tsify",
"version": "0.8.1",
"description": "Browserify plugin for compiling Typescript",
"main": "index.js",
"scripts": {
"test": "node test/test.js | tap-spec",
"lint": "jshint --reporter node_modules/jshint-stylish/stylish.js ."
},
"repository": {
"type": "git",
"url": "git://github.com/smrq/tsify"
},
"keywords": [
"browserify",
"browserify-plugin",
"typescript"
],
"author": "Greg Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/smrq/tsify/issues"
},
"homepage": "https://github.com/smrq/tsify",
"dependencies": {
"convert-source-map": "^0.5.0",
"debuglog": "^1.0.1",
"lodash": "^3.3.1",
"through2": "^0.6.2"
},
"devDependencies": {
"ansidiff": "^1.0.0",
"browserify": "^9.0.3",
"event-stream": "^3.2.1",
"fs-extra": "^0.16.3",
"jshint": "^2.5.11",
"jshint-stylish": "^1.0.0",
"node-foo": "^0.2.3",
"tap-spec": "^2.2.0",
"tape": "^3.4.0",
"typescript": "git://github.com/Microsoft/TypeScript",
"watchify": "^2.2.1"
},
"peerDependencies": {
"browserify": "6.x || 7.x || 8.x || 9.x"
}
}