forked from TypeStrong/tsify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "tsify",
"version": "0.10.0",
"description": "Browserify plugin for compiling Typescript",
"main": "index.js",
"scripts": {
"test": "test-peer-range browserify",
"test-main": "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": "^1.1.0",
"debuglog": "^1.0.1",
"lodash": "^3.8.0",
"through2": "^0.6.5",
"typescript": "^1.5.0-beta"
},
"devDependencies": {
"ansidiff": "^1.0.0",
"browserify": "^10.1.3",
"event-stream": "^3.3.1",
"fs-extra": "^0.18.2",
"jshint": "^2.7.0",
"jshint-stylish": "^1.0.2",
"node-foo": "^0.2.3",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"test-peer-range": "^1.0.1",
"watchify": "^3.2.1"
},
"peerDependencies": {
"browserify": ">= 6.x"
}
}