-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1001 Bytes
/
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
{
"name": "@hulu/splitshot",
"version": "1.2.0",
"description": "Generates rough TypeScript declarations from CoffeeScript sources",
"main": "lib/index.js",
"types": "types/index.d.ts",
"bin": {
"splitshot": "bin/cli.js"
},
"files": [
"bin/",
"lib/",
"types/"
],
"scripts": {
"clean": "rimraf lib/ types/",
"build": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "[email protected]/hulu/splitshot.git"
},
"keywords": [
"coffeescript",
"typescript",
"transpiler",
"declaration"
],
"author": "Hulu Living Room",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/node": "^7.0.4",
"@types/yargs": "^6.5.0",
"chai": "^4.1.2",
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"mocha": "^4.1.0",
"rimraf": "^2.5.4",
"typescript": "^2.1.5"
},
"dependencies": {
"coffee-script": "^1.12.3",
"dts-dom": "^0.1.25",
"yargs": "^6.6.0"
}
}