forked from journeyapps/ts-browser-compat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"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"
},
"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": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@mdn/browser-compat-data": "^5.2.15",
"cmd-ts": "^0.11.0",
"strip-json-comments": "^3.1.1"
},
"peerDependencies": {
"typescript": "^4.5.0"
},
"files": [
"dist"
]
}