-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "@lingo-app/node",
"description": "Lingo API wrapper",
"version": "2.1.0",
"homepage": "https://github.com/lingo-app/lingojs",
"author": "Lingo <[email protected]> (https://www.lingoapp.com/)",
"repository": "https://github.com/lingo-app/lingojs",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bugs:": "https://github.com/lingo-app/lingojs/issues",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest ./test/unitTests",
"integration-test": "jest ./test/integrationTests",
"validate": "prettier --check \"./{src,test}/**/*.ts\" && eslint './{src,test}/**/*.{js,ts}'",
"format": "prettier --write \"./**/*.ts\"",
"setup": "yarn dlx @yarnpkg/sdks vscode"
},
"dependencies": {
"@ctrl/tinycolor": "^3.6.0",
"btoa": "^1.2.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"query-string": "^7.1.3",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/jest": "^28.1.0",
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-plugin-prettier": "^4.0.0",
"install": "^0.13.0",
"jest": "^28.1.3",
"prettier": "^2.8.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "~4.5.0"
},
"jest": {
"preset": "ts-jest",
"globals": {}
},
"packageManager": "[email protected]"
}