-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "dockertest_joescho",
"version": "1.0.3",
"description": "Setting up a really simple demo of Docker",
"main": "server.js",
"scripts": {
"test": "NODE_PATH=. nyc mocha 'test/*.js'",
"jshint": "jshint *.js test/*.js",
"code-style": "jscs -p airbnb *.js test/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"check-coverage": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"open-coverage": "open coverage/lcov-report/index.html"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/JoeScho/docker-test"
},
"keywords": [
"docker",
"introduction",
"node"
],
"author": "@JoeScho",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"supertest": "^3.0.0"
},
"dependencies": {
"express": "^4.15.4"
},
"pre-commit": [
"jshint",
"code-style",
"test",
"check-coverage"
],
"jshintConfig": {
"boss": true,
"node": true,
"strict": false,
"smarttabs": true,
"maxlen": 80,
"newcap": false,
"undef": true,
"unused": true,
"onecase": true,
"indent": 2,
"sub": true,
"esversion": 6
}
}