-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
58 lines (58 loc) · 1.32 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
51
52
53
54
55
56
57
58
{
"name": "tsify",
"version": "5.0.4",
"description": "Browserify plugin for compiling Typescript",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test-latest": "node test/test.js",
"test": "tav"
},
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/tsify"
},
"keywords": [
"browserify",
"browserify-plugin",
"typescript"
],
"author": "Greg Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/tsify/issues"
},
"homepage": "https://github.com/TypeStrong/tsify",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"convert-source-map": "^1.1.0",
"fs.realpath": "^1.0.0",
"object-assign": "^4.1.0",
"semver": "^6.1.0",
"through2": "^2.0.0",
"tsconfig": "^5.0.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-react": "^6.5.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"eslint": "^4.6.1",
"event-stream": "^3.3.1",
"fs-extra": "^5.0.0",
"node-foo": "^0.2.3",
"source-map": "^0.5.3",
"string-to-stream": "^1.1.1",
"tape": "^4.10.1",
"test-all-versions": "^3.3.3",
"typescript": "~2.0.3",
"watchify": "^3.11.1"
},
"peerDependencies": {
"browserify": ">= 10.x",
"typescript": ">= 2.8"
}
}