-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.67 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
{
"name": "chat",
"version": "1.0.0",
"description": "Basic chat",
"keywords": [
"chat",
"websocket"
],
"main": "main.js",
"scripts": {
"build.watch": "webpack --config webpack.dev.js --watch",
"build.prod": "webpack --config webpack.prod.js",
"coverage.check": "jest --coverage",
"coverage.report": "cat ./coverage/lcov.info | codecov",
"jest": "jest",
"jest.watch": "npm run test -- --watch",
"standard": "standard",
"validate": "npm run standard && npm run coverage.check && npm run build.prod"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/leopardd/chat.git"
},
"author": "Nathachai Thongniran <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leopardd/chat/issues"
},
"homepage": "https://github.com/leopardd/chat#readme",
"dependencies": {
"debug": "^3.0.1",
"dotenv": "^4.0.0",
"express": "^4.18.2",
"faker": "^4.1.0",
"uuid": "^3.1.0",
"ws": "^3.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^2.3.0",
"jest": "^21.0.1",
"standard": "^10.0.3",
"webpack": "^3.6.0",
"webpack-merge": "^4.1.0"
},
"jest": {
"verbose": true,
"testMatch": [
"**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
}
},
"standard": {
"verbose": true,
"env": "jest",
"globals": [
"localStorage",
"location",
"WebSocket",
"$"
]
}
}