forked from bradennapier/pp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.5 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
{
"name": "presences",
"version": "3.0.0",
"author": "Timeraa",
"license": "MPL-2.0",
"scripts": {
"pretty": "prettier --write **/*.ts **/{metadata,tsconfig}.json",
"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": {
"@types/chrome": "^0.0.117",
"@types/glob": "^7.1.2",
"@types/mongodb": "^3.5.25",
"@types/node": "^14.0.14",
"@types/prettier": "^2.0.1",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"eslint": "6.8.0",
"execa": "^4.0.2",
"glob": "^7.1.6",
"jsonschema": "^1.2.6",
"mongodb": "^3.5.9",
"prettier": "^2.0.5",
"semver": "^7.3.2",
"source-map-support": "^0.5.19",
"typescript": "^3.9.5"
}
}