-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "mock-interface",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-exports && npm run lint && npm run test",
"check-exports": "attw --pack .",
"lint": "tsc",
"test": "jest --config jest.config.cjs",
"coveralls": "jest --config jest.config.cjs --coverage && cat ./src/coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IhsanMujdeci/mockInterface.git"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"jest": ">=22.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@swc-node/jest": "^1.6.5",
"@types/jest": "^27.0.1",
"coveralls": "^3.1.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"bugs": {
"url": "https://github.com/IhsanMujdeci/mockInterface/issues"
},
"homepage": "https://github.com/IhsanMujdeci/mockInterface#readme"
}