-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "@gunantos/express-io",
"version": "0.0.1",
"description": "Library API Realtime dengan Express dan socket.io",
"main": "src/index.js",
"scripts": {
"start": "babel-node src/index.js",
"testing": "babel-node test/index.js",
"test": "mocha --reporter spec"
},
"keywords": [
"realtime",
"api",
"express",
"socket.io"
],
"author": "gunantos <gunanto.simamora@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gunantos/express-io.git"
},
"bugs": {
"url": "https://github.com/gunantos/express-io/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/gunantos"
},
"homepage": "https://github.com/gunantos/express-io",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.1"
},
"dependencies": {
"@socket.io/mongo-adapter": "^0.2.1",
"chai": "^4.3.6",
"express": "^4.18.1",
"mocha": "^10.0.0",
"mongodb": "^4.8.1",
"mongoose": "^6.5.2",
"socket.io": "^4.5.1"
},
"directories": {
"test": "test"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"branches": [
"main"
]
}
}