-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
75
{
"name": "@hectorjs/stub-cli",
"version": "1.33.0",
"description": "Command line for stub-backend library",
"main": "index.js",
"bin": {
"hjs": "bin/hjs"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --recursive ./test/unit/**/* --exit",
"e2e": "mocha --recursive ./test/e2e/**/* --exit",
"eslint": "eslint ./src/**/*.js ./test/**/*.js",
"test-all": "sh scripts/banners/cup-tea.sh && rm -rf example && rm -rf node_modules && sleep 3 && npm i && npm run eslint && npm run coverage && npm audit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"coverage": "nyc --reporter=html --cache false --reporter=text-summary mocha --recursive --exit",
"_start": "hjs start",
"_test": "env KEY=local mocha ./_hjs --recursive --exit",
"_start-dev": "hjs start --dev",
"hjs": "node bin/hjs"
},
"overrides": {
"optionator": "0.9.3"
},
"keywords": [
"cli",
"stub",
"angular",
"react",
"vuejs",
"hectorjs",
"@hectorjs/stub-backend",
"stub-backend",
"mock",
"json",
"tdd",
"node",
"express",
"frontend"
],
"author": "Hector Jimenez Sanchez",
"license": "MIT",
"dependencies": {
"chai": "^4.3.7",
"chalk": "^4.1.1",
"minimist": "^1.2.7",
"mocha": "^9.2.0",
"nodemon": "^3.0.2",
"prompts": "^2.4.1",
"shelljs": "^0.8.5",
"supertest": "^6.3.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.3.8",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/hector-js/stub-cli.git"
},
"homepage": "https://main.hectorjs.com",
"husky": {
"hooks": {
"pre-commit": "sh scripts/banners/earth.sh",
"pre-push": "npm run test-all"
}
}
}