-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "type-annotationify",
"version": "0.0.7",
"description": "Migrate full-fledged TypeScript code to type-annotated TypeScript code that is compatible with the type annotation proposal as well as NodeJS's --experimental-strip-types",
"license": "Apache-2.0",
"author": "nicojs",
"type": "module",
"main": "dist/main.js",
"bin": {
"type-annotationify": "bin/type-annotationify.js"
},
"keywords": [
"typescript",
"type-annotations",
"strip-types",
"transform",
"experimental-strip-types"
],
"files": [
"dist",
"!dist/**/*.spec.js?(.map)"
],
"engines": {
"node": ">=22"
},
"scripts": {
"clean": "rm -rf dist *.tsbuildinfo",
"all": "npm run format && npm run build && npm run test",
"format:fix": "npm run format -- --write",
"format": "prettier --check src/**/*.ts README.md",
"build": "tsc -b",
"test": "node --test --experimental-strip-types --test-reporter=spec src/**/*.spec.ts",
"test:mutation": "stryker run"
},
"dependencies": {
"typescript": "^5.7.3"
},
"devDependencies": {
"@stryker-mutator/tap-runner": "^8.7.1",
"@types/node": "^22.10.5",
"prettier": "^3.4.2"
}
}