-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mockt",
"version": "0.8.2",
"description": "Joyful mocking library for Typescript and Javascript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"react-native": "dist/esm/index.js",
"author": "Nicolás Bottarini <nicolasbottarini@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nbottarini/mockt#readme",
"repository": {
"type": "git",
"url": "https://github.com/nbottarini/mockt.git"
},
"keywords": [
"testing",
"mocking",
"mock",
"stub",
"javascript",
"typescript"
],
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"check-all": "yarn lint && yarn test",
"lint": "eslint . && tsc --noEmit",
"test": "jest"
},
"dependencies": {
"lodash.isequalwith": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/lodash.isequalwith": "^4.4.9",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"jest-extended": "^4.0.2",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">= 18.0.0"
}
}