This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.08 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
{
"name": "@adobe/helix-simulator",
"version": "5.3.83",
"description": "Helix Testing Environment",
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-simulator.git"
},
"main": "src/index.js",
"license": "Apache-2.0",
"scripts": {
"semantic-release": "semantic-release",
"commit": "git-cz",
"start": "node src/run.js",
"test": "nyc --reporter=text --reporter=lcov --check-coverage --branches 78 --statements 91 --lines 91 mocha -t 5000",
"test-win": "mocha --timeout 20000 --reporter xunit test --reporter-options output=junit/test.xml",
"test-ci": "npm run lint && npm run test && codecov",
"lint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"@adobe/git-server": "1.3.29",
"@adobe/helix-fetch": "2.4.2",
"@adobe/helix-log": "5.0.5",
"@adobe/helix-shared-config": "1.3.1",
"@adobe/helix-shared-git": "1.0.3",
"chokidar": "3.5.2",
"colors": "1.4.0",
"cookie-parser": "1.4.5",
"express": "4.17.1",
"faye-websocket": "0.11.4",
"fs-extra": "10.0.0",
"glob": "7.1.7",
"livereload-js": "3.3.2",
"lodash.clonedeep": "4.5.0",
"moment": "2.29.1",
"nodesi": "1.17.0",
"ws": "8.2.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.1.5",
"@adobe/helix-testutils": "0.4.5",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "10.0.0",
"@semantic-release/github": "8.0.0",
"codecov": "3.8.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.2",
"ghooks": "2.0.4",
"lint-staged": "11.1.2",
"mocha": "9.1.1",
"mocha-junit-reporter": "2.0.0",
"nock": "13.1.3",
"nyc": "15.1.0",
"semantic-release": "18.0.0",
"shelljs": "0.8.4",
"uuid": "8.3.2"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"ghooks": {
"pre-commit": "npx lint-staged"
}
},
"bugs": {
"url": "https://github.com/adobe/helix-simulator/issues"
},
"homepage": "https://github.com/adobe/helix-simulator#readme"
}