-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 879 Bytes
/
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
{
"name": "mockzen",
"version": "0.2.2",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"copy:meta": "cp README.md package.json dist",
"copy:transformers": "cp transformers dist/transformers -r",
"build": "npm run clean && tsc && npm run copy:transformers",
"publish:dist": "npm run build && npm run copy:meta && cd dist && npm publish"
},
"keywords": [
"mock",
"testing",
"unit",
"fake",
"stub",
"dependency",
"ioc"
],
"author": "Michael Zanggl",
"repository": {
"type": "git",
"url": "https://github.com/MZanggl/mockzen"
},
"jest": {
"transform": {
"^.+\\injection.test.js$": "./transformers/jest"
}
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.2",
"jest": "^29.7.0",
"typescript": "^5.2.2"
}
}