-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "edumail",
"version": "1.0.8",
"repository": "[email protected]:AnandChowdhary/edumail.git",
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cp -r domains dist/domains",
"build-run": "yarn build && node dist/index.js",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-without-reporting": "jest --coverage",
"test-without-coverage": "jest"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"coveralls": "^3.1.0",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"dependencies": {
"fs-extra": "^9.0.1",
"node-cache": "^5.1.2"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}