-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.37 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
123
{
"author": "Duane Sibilly <[email protected]>",
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"plugins": [
"@babel/plugin-transform-runtime",
"transform-line"
],
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@babel/runtime": "~7.12.1",
"@dsibilly/dice-tower": "~1.5.0",
"@dsibilly/mersenne-twister": "~1.0.5",
"async-mutex": "^0.2.4",
"bunyan": "~2.0.4",
"common-tags": "~1.8.0",
"countdown": "~2.6.0",
"debug": "~4.2.0",
"discord.js": "~12.4.1",
"isotropic-error": "~0.11.0",
"isotropic-make": "~0.11.0",
"node-fetch": "~2.6.1",
"number-to-words": "~1.2.4",
"pad-start": "~1.0.2",
"parse-duration": "~0.4.4",
"presage": "~0.2.4",
"source-rcon-client": "~0.0.10",
"uuid": "~8.3.1",
"wikijs": "~6.0.1"
},
"description": "",
"devDependencies": {
"@babel/cli": "~7.12.1",
"@babel/core": "~7.12.3",
"@babel/node": "~7.12.1",
"@babel/plugin-transform-runtime": "~7.12.1",
"@babel/preset-env": "~7.12.1",
"@babel/register": "~7.12.1",
"babel-plugin-istanbul": "~6.0.0",
"babel-plugin-transform-line": "~0.9.0",
"chai": "~4.2.0",
"coveralls": "~3.1.0",
"cross-env": "~7.0.2",
"depcheck": "~1.2.0",
"eslint": "~7.12.0",
"eslint-plugin-isotropic": "~0.4.0",
"mocha": "~8.2.0",
"nyc": "~15.1.0",
"pre-commit": "~1.2.2"
},
"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": {
"sort-imports": 0
}
},
"license": "ISC",
"main": "lib/index.js",
"name": "jinx-the-robot",
"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
},
"private": true,
"scripts": {
"build": "BABEL_ENV=build node_modules/.bin/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 && npm install",
"start": "node lib/index.js | bunyan -L",
"test": "cross-env BABEL_ENV=test nyc mocha"
},
"version": "0.7.1"
}