-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 937 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
{
"name": "mockatron",
"version": "0.1.10",
"description": "Mock server for REST APIs",
"main": "dist/src/app.js",
"bin": {
"mockatron": "dist/src/run.js"
},
"scripts": {
"start": "tsc && node dist/src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahadevans87/mockatron.git"
},
"author": "Mahadevan Sreenivasan",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahadevans87/mockatron/issues"
},
"homepage": "https://github.com/mahadevans87/mockatron#readme",
"dependencies": {
"express": "^4.17.1",
"get-installed-path": "^4.0.8",
"handlebars": "^4.7.7",
"lorem-ipsum": "^2.0.4",
"ts-node": "^10.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "16.4.2",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
}
}