33 lines
878 B
JSON
33 lines
878 B
JSON
{
|
|
"name": "@exercism/typescript-armstrong-numbers",
|
|
"version": "1.0.0",
|
|
"description": "Exercism exercises in Typescript.",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/exercism/typescript"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^18.16.0 || >=20.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@exercism/babel-preset-typescript": "^0.4.0",
|
|
"@exercism/eslint-config-typescript": "^0.5.0",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "~18.16.16",
|
|
"babel-jest": "^29.5.0",
|
|
"core-js": "~3.30.2",
|
|
"eslint": "^8.42.0",
|
|
"jest": "^29.5.0",
|
|
"typescript": "~5.0.4"
|
|
},
|
|
"scripts": {
|
|
"test": "yarn lint:types && jest --no-cache",
|
|
"lint": "yarn lint:types && yarn lint:ci",
|
|
"lint:types": "yarn tsc --noEmit -p .",
|
|
"lint:ci": "eslint . --ext .tsx,.ts"
|
|
},
|
|
"packageManager": "yarn@3.6.0"
|
|
}
|