-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "paracord",
"version": "0.0.3",
"description": "Scalable Discord gateway and API handlers alongside a pre-built client.",
"main": "index.js",
"scripts": {
"test": "mocha tests/smoke.spec.js tests/suite.spec.js '**/tests/*.spec.js' --exit",
"test-nodemon": "nodemon --exec \"mocha tests/smoke.spec.js tests/suite.spec.js 'src/**/tests/*.spec.js'\"",
"test-paracord": "nodemon --exec \"mocha tests/smoke.spec.js tests/suite.spec.js 'src/**/tests/*.spec.js' -g Paracord\"",
"coverage": "nodemon --exec \"nyc --reporter=html --reporter=text npm run test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/paracordjs/paracord.git"
},
"author": "Landeau McDade",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paracordjs/paracord/issues"
},
"dependencies": {
"axios": "^0.19.0",
"ws": "^7.2.1"
},
"devDependencies": {
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1"
},
"optionalDependencies": {
"@grpc/grpc-js": "^0.6.15",
"@grpc/proto-loader": "^0.5.3",
"grpc": "^1.24.2",
"pm2": "^3.5.2"
},
"keywords": [
"discord",
"discordapp",
"api",
"bot",
"client",
"node",
"paracord"
]
}