forked from Spreetail/worksample-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 885 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 885 Bytes
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
{
"name": "multivaluedictionary",
"version": "1.0.0",
"description": "A command line multivalue dictionary.",
"main": "index.js",
"scripts": {
"start": "npx tsc && node ./dist/index.js",
"test": "jest --coverage"
},
"author": "Sriprasad Kannan",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^15.6.1",
"@types/readline-sync": "^1.4.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.3.2"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": true,
"modulePathIgnorePatterns": ["<rootDir>/dist/"]
}
}