-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "vscode-fuzzy-scorer",
"version": "0.0.4",
"description": "A shameless rip off of vscode fuzzy scorer algorithm used to search files and stuff",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"ts-declaration": "tsc --project tsconfig.json --outDir dist --emitDeclarationOnly true --declaration true --noEmit false",
"build": "babel src --out-dir dist --extensions .ts",
"typecheck": "tsc",
"eslint": "eslint --ext .js,.ts ./",
"test": "jest"
},
"author": "Sergey Goliney sergey@goliney.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"core-js": "^3.6.5"
}
}