-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.81 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
67
68
69
70
71
72
73
74
{
"name": "stubon",
"version": "0.5.2",
"description": "stubon is simple dummy api server.",
"main": "index.js",
"bin": {
"stubon": "bin/stubon.js"
},
"scripts": {
"test": "eslint src/ && nyc mocha --timeout 5000 --require @babel/register test/",
"coveralls": "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"build": "babel src/stubon.js --out-file lib/stubon.js",
"watch:test": "chokidar 'src/*.js' -c 'npm test'",
"watch:build": "chokidar 'src/*.js' -c 'npm run build'",
"server": "node example/server.js",
"start": "npm run watch:test & npm run watch:build & npm run server",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/putan/stubon.git"
},
"keywords": [
"stub",
"api",
"dummy",
"simple",
"server"
],
"author": "putan",
"license": "MIT",
"bugs": {
"url": "https://github.com/putan/stubon/issues"
},
"homepage": "https://github.com/putan/stubon#readme",
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"argv": "^0.0.2",
"body-parser": "^1.19.0",
"chokidar": "^3.2.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"glob": "^7.1.3",
"https": "^1.0.0",
"url": "^0.11.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"chokidar-cli": "^2.0.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"node-fetch": "^2.5.0",
"nyc": "^14.0.0",
"sinon": "^7.3.2"
}
}