-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "testserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"init": "^0.1.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"jquery": "^3.3.1",
"jsdom": "^12.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"onchange": "^4.1.0",
"wdio-mocha-framework": "^0.6.3",
"wdio-spec-reporter": "^0.1.5"
},
"scripts": {
"lint": "node ./node_modules/.bin/eslint *.js **/*.js",
"pretest": "npm run lint",
"test": "node ./node_modules/.bin/mocha --reporter dot --exit \"*.spec.js\"",
"prewatch": "npm run test",
"watch": "onchange '**/*.js' -- npm run test",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopHatEcho/TestServer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TopHatEcho/TestServer/issues"
},
"homepage": "https://github.com/TopHatEcho/TestServer#readme"
}