-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.89 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
74
75
{
"name": "krypton",
"version": "0.1.0",
"description": "Fast voice for Discord",
"main": "lib/index.js",
"scripts": {
"test": "npm run cpplint && npm run clang-tidy && npm run cppcheck && npm run eslint",
"cpplint": "./cpplint.py --linelength=500 --filter=-build/header_guard src/*",
"eslint": "eslint lib/",
"clang-tidy": "clang-tidy src/* -extra-arg-before=-xc++ -checks=-*,google-*,performance-*,portability-* -warnings-as-errors=* -- -std=c++11 -Inode_modules/nan -I$HOME/.node-gyp/$(node -p 'process.version.substring(1)')/include/node",
"cppcheck": "cppcheck --enable=warning --enable=performance --enable=portability --enable=unusedFunction --enable=missingInclude --error-exitcode=1 --force src/*",
"install": "node install",
"docs": "jsdoc --readme README.md -c jsdoc.json",
"build": "node config"
},
"devDependencies": {
"docdash": "^0.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jsdoc": "^3.5.5",
"node-abi": "^2.2.0",
"superagent": "^3.8.2",
"tar": "^4.4.1",
"xml-js": "^1.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hackzzila/krypton.git"
},
"keywords": [
"discord",
"opus",
"lame",
"sodium",
"pcm",
"voice"
],
"author": "Hackzzila <[email protected]>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/Hackzzila/krypton/issues"
},
"homepage": "https://github.com/Hackzzila/krypton#readme",
"directories": {
"doc": "docs",
"lib": "lib"
},
"engines": {
"node": ">=6.0.0"
},
"os": [
"win32",
"linux",
"darwin"
],
"cpu": [
"x64",
"ia32",
"arm",
"arm64"
],
"files": [
"lib/",
"src/",
"install.js",
"config.js",
"binding.gyp"
],
"dependencies": {
"nan": "^2.10.0",
"node-gyp": "^3.6.2"
}
}