-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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": "mocr",
"version": "0.6.0",
"description": "A mock http server used in tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "yarn build",
"prettier:check": "prettier --check 'lib/**/*.ts'",
"prettier:apply": "prettier --write 'lib/**/*.ts'",
"build": "tsc",
"test": "jest",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manosim/mocr.git"
},
"keywords": [
"mock",
"http",
"server",
"tests",
"typescript"
],
"author": "Emmanouil Konstantinidis",
"license": "MIT",
"bugs": {
"url": "https://github.com/manosim/mocr/issues"
},
"homepage": "https://github.com/manosim/mocr#readme",
"files": [
"dist"
],
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@types/node-fetch": "^2.5.7",
"jest": "^26.6.1",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"ts-jest": "^26.4.2",
"typescript": "^4.0.3"
}
}