-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "twlv-chat-api",
"version": "1.0.0",
"description": "TWLV Chat API",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"generate-key": "node ./scripts/generate-key.js",
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\"",
"precommit": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "[email protected]:twlv/twlv-chat-api.git"
},
"author": "Ganesha <[email protected]> (http://sagara.id)",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-xinix": "^1.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"supertest": "^3.1.0"
},
"dependencies": {
"@twlv/core": "^0.2.11",
"@twlv/transport-sockjs": "^0.1.3",
"@twlv/transport-webrtc": "^0.1.7",
"bono": "^0.3.6"
},
"engines": {
"npm": "6.3.x"
}
}