forked from sandersn/downlevel-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 913 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
{
"name": "downlevel-dts",
"version": "0.9.0",
"description": "Convert d.ts to be compatible with older typescript compilers",
"homepage": "https://github.com/sandersn/downlevel-dts",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "jest",
"baseline-accept": "cp -r baselines/local/ts* baselines/reference"
},
"repository": {
"type": "git",
"url": "https://github.com/sandersn/downlevel-dts.git"
},
"author": "Nathan Shively-Sanders",
"license": "MIT",
"dependencies": {
"semver": "^7.3.2",
"shelljs": "^0.8.3",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/node": "^13.1.6",
"@types/shelljs": "^0.8.6",
"@types/semver": "^7.3.4",
"husky": "^4.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}