-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
51
52
53
54
55
56
57
58
{
"name": "microsoft-text-translator",
"version": "0.0.3",
"description": "microsoft-text-translator-v-3",
"license": "MIT",
"repository": "",
"author": {
"name": "Aleksandr Petrov",
"email": "[email protected]"
},
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"axios": "0.18.1",
"qs": "^6.9.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.18",
"@types/node": "^10.11.4",
"@types/qs": "^6.5.3",
"@types/uuid": "^3.4.5",
"coveralls": "^3.0.6",
"jest": "^23.6.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest"
}
}