-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"author": "Duane Sibilly <duane@sibilly.com>",
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"plugins": [
"transform-line"
],
"presets": [
"@babel/preset-env"
]
},
"bugs": {
"url": "https://github.com/dsibilly/source-rcon-client/issues"
},
"dependencies": {
"@babel/runtime": "~7.7.4",
"@dsibilly/mersenne-twister": "~1.0.3",
"isotropic-error": "~0.10.0",
"isotropic-later": "~0.10.0",
"isotropic-make": "~0.10.0",
"pino": "~5.14.0",
"pino-pretty": "^3.5.0"
},
"description": "An ES2017 implementation of an RCON client",
"devDependencies": {
"@babel/cli": "~7.7.4",
"@babel/core": "~7.7.4",
"@babel/node": "~7.7.4",
"@babel/plugin-transform-runtime": "~7.7.4",
"@babel/preset-env": "~7.7.4",
"@babel/register": "~7.7.4",
"babel-plugin-istanbul": "~5.2.0",
"babel-plugin-transform-line": "~0.8.0",
"chai": "~4.2.0",
"coveralls": "~3.0.9",
"cross-env": "~6.0.3",
"eslint": "~6.7.2",
"eslint-plugin-isotropic": "~0.4.0",
"lodash": ">=4.17.15",
"mocha": "~6.2.2",
"nyc": "~14.1.1",
"pre-commit": "~1.2.2",
"sinon": "~7.5.0"
},
"eslintConfig": {
"env": {
"es6": true,
"mocha": true,
"node": true
},
"extends": "plugin:isotropic/isotropic",
"parserOptions": {
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": true,
"jsx": false
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"isotropic"
],
"root": true,
"rules": {
"isotropic/sort-vars": 0,
"sort-imports": 0
}
},
"homepage": "https://github.com/dsibilly/source-rcon-client/",
"keywords": [
"es2018",
"rcon"
],
"license": "MIT",
"main": "lib/SourceRCONClient.js",
"name": "source-rcon-client",
"nyc": {
"all": true,
"cache": true,
"check-coverage": true,
"include": [
"js/*.js",
"js/*/*.js"
],
"lines": 0,
"exclude": [
"lib/*"
],
"instrument": false,
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/dsibilly/source-rcon-client.git"
},
"scripts": {
"build": "BABEL_ENV=build babel js -d lib",
"coverage": "nyc check-coverage",
"lint": "node_modules/.bin/eslint js test",
"posttest": "[ -z \"$npm_config_coverage\" ] || nyc check-coverage",
"prepare": "npm run build",
"prepublishOnly": "npm audit && nyc check-coverage",
"pretest": "npm run lint",
"rebuild": "rm -rf ./node_modules && rm package-lock.json && rm -rf ./lib && npm install",
"test": "cross-env BABEL_ENV=test nyc mocha"
},
"version": "0.0.10"
}