-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.36 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
{
"name": "node-testing-server",
"version": "1.6.1",
"description": "Simple Node.js server to generate .html, .json, .js, .css, .jpg, .png pages for end-to-end and API testing",
"main": "index.js",
"scripts": {
"lint": "node ./node_modules/.bin/eslint *.js tests/**/*.js",
"test": "node_modules/.bin/testcafe 'chrome:headless'",
"patch": "npm version patch -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"minor": "npm version minor -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"major": "npm version major -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marketionist/node-testing-server.git"
},
"keywords": [
"server",
"node server",
"testing server",
"node.js server",
"e2e testing server",
"node server testing",
"simple node server",
"server for testing",
"server for tests",
"lightweight server"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marketionist/node-testing-server/issues"
},
"homepage": "https://github.com/Marketionist/node-testing-server#readme",
"devDependencies": {
"eslint": "^8.52.0",
"testcafe": "^3.3.0"
}
}