-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "flashdown",
"version": "0.0.22",
"description": "A command line flashcard app based on a plain text markup language.",
"author": "Steve Ridout",
"license": "MIT",
"main": "index.ts",
"devDependencies": {
"@types/jest": "29.1.2",
"@types/lodash": "4.14.186",
"@types/mocha": "10.0.0",
"@types/random-seed": "0.3.3",
"jest": "29.1.2",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"chalk": "^4",
"commander": "9.4.1",
"lodash": "4.17.21",
"random-seed": "0.3.0",
"typescript": "4.8.3"
},
"bin": "dist/flashdown.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development webpack -w",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"files": [
"/dist",
"/exampleFlashcards"
]
}