forked from PreMiD/Presences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.84 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
{
"name": "presences",
"version": "3.0.0",
"author": "Timeraa",
"license": "MPL-2.0",
"scripts": {
"pretty": "prettier --write **/*.ts **/{metadata,tsconfig}.json",
"inc": "tsc --module CommonJS --target ES2020 --esModuleInterop --removeComments --noUnusedParameters --noUnusedLocals --noFallthroughCasesInSwitch --newLine lf --inlineSourceMap ./massVer.ts && node ./massVer.js",
"se": "node ./syntaxEnforcer.js",
"se:compile": "tsc --module CommonJS --target ES2020 --esModuleInterop --removeComments --noUnusedParameters --noUnusedLocals --noFallthroughCasesInSwitch --newLine lf --inlineSourceMap ./syntaxEnforcer.ts",
"sv": "node ./schemaValidator.js",
"sv:compile": "tsc --module CommonJS --target ES2020 --esModuleInterop --removeComments --noUnusedParameters --noUnusedLocals --noFallthroughCasesInSwitch --newLine lf --inlineSourceMap ./schemaValidator.ts",
"pu": "node ./presenceUpdater.js",
"pu:compile": "tsc --module CommonJS --target ES2020 --esModuleInterop --removeComments --noUnusedParameters --noUnusedLocals --noFallthroughCasesInSwitch --newLine lf --inlineSourceMap ./presenceUpdater.ts"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@types/babel__core": "^7.1.12",
"@types/chrome": "^0.0.133",
"@types/glob": "^7.1.3",
"@types/mongodb": "3.6.8",
"@types/node": "^14.14.31",
"@types/prettier": "^2.2.1",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"eslint": "^7.21.0",
"execa": "^5.0.0",
"glob": "^7.1.6",
"jsonschema": "^1.4.0",
"mongodb": "^3.6.3",
"prettier": "^2.2.1",
"semver": "^7.3.4",
"source-map-support": "^0.5.19",
"terser": "^5.6.0",
"typescript": "^3.9.9"
}
}