-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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
{
"name": "api-translator",
"version": "1.1.0",
"main": "index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/egyjs/API-Translator"
},
"scripts": {
"test": "jest --silent=false",
"test:watch": "jest --watch --silent=false",
"test:string": "jest tests/string.test.ts --silent=false",
"test:array": "jest tests/array.test.ts --silent=false",
"test:object": "jest tests/object.test.ts --silent=false",
"test:edge": "jest tests/edge-cases.test.ts --silent=false",
"test:performance": "jest tests/performance.test.ts --silent=false",
"test:basic": "jest tests/word.test.ts --silent=false",
"build": "tsc",
"watch": "tsc -w",
"example:text": "node examples/text.js",
"example:array": "node examples/array.js",
"example:object": "node examples/object.js",
"example:advanced": "node examples/advanced.js",
"example:performance": "node examples/performance.js",
"example:errors": "node examples/error-handling.js",
"examples": "npm run example:text && npm run example:array && npm run example:object"
},
"keywords": [
"translate",
"free translate",
"translator",
"puppeteer",
"google translate"
],
"author": "egyjs <el3zahaby@gmail.com>",
"license": "MIT",
"dependencies": {
"puppeteer": "^19.1.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-puppeteer": "^11.0.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"description": "api-translator is a free and unlimited translation API that uses Google Translate",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}