-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
35 lines (35 loc) · 1.21 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
{
"name": "hw1-flashcards",
"version": "1.0.0",
"description": "The project is setup with npm already. `npm install` will install packages, `npm run compile` will run the TypeScript compiler, and `npm run start` will start the compiled program. *Tip*: When using `npm run start`, type `--` after start to ensure arguments you pass are interpreted as part of the `flashcard` command, that is `npm run start -- <arguments>`.",
"main": "index.js",
"type": "module",
"scripts": {
"compile": "tsc",
"lint": "ts-standard src/",
"start": "node dist/index.js",
"test": "jest --collect-coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.0",
"@types/readline-sync": "^1.4.4",
"@types/yargs": "^17.0.24",
"babel-jest": "^29.7.0",
"jest": "^29.0.0",
"ts-jest": "^29.1.1",
"ts-standard": "^10.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"readline-sync": "^1.4.10",
"yargs": "^17.7.2"
},
"directories": {
"test": "tests"
}
}