-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "semilla-typescript-lib",
"version": "1.0.0",
"author": "Federico Aloi",
"license": "MIT",
"scripts": {
"test": "run-s lint jest",
"lint": "eslint --cache .",
"jest": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"dependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/ramda": "^0.27.40",
"@types/source-map-support": "^0.5.3",
"jest": "^27.0.4",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"jest-junit": "^12.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}