forked from iainmerrick/ts-browser-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "@journeyapps/ts-browser-compat",
"version": "0.1.2",
"description": "Check TypeScript projects for browser compatibility",
"repository": "github:journeyapps/ts-browser-compat",
"main": "dist/index.js",
"bin": {
"ts-browser-compat": "dist/bin.js"
},
"scripts": {
"sample": "ts-node src/bin.ts",
"pretty": "prettier --write **/*.ts **/*.json **/*.js",
"pretty:check": "prettier --check **/*.ts **/*.json **/*.js",
"test": "jest --config tests/jest.config.ts",
"build": "tsc -b && tsc -b tests/tsconfig.json",
"clean": "tsc -b --clean && tsc -b --clean tests/tsconfig.json",
"prepare": "tsc -b"
},
"keywords": [],
"author": "Journey Mobile, Inc.",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@types/node": "^18.11.9",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@mdn/browser-compat-data": "^5.2.15",
"cmd-ts": "^0.13.0",
"strip-json-comments": "^3.1.1"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"files": [
"dist"
]
}