-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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": "@ewb/translate",
"version": "2.0.3",
"type": "module",
"description": "Translate as you create your app. Saves the words and text in a tree structure for fast and easy lookup.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "yarn build:watch",
"build": "tsc",
"build:watch": "tsc --watch --incremental",
"lint": "tslint --project \"./tsconfig.json\"",
"test": "vitest run",
"test:ui": "vitest --ui --api 9527",
"test:watch": "vitest",
"postversion": "git push && git push --tags",
"prepublish": "npm run test && npm run build",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmilsWebbod/translate.git"
},
"keywords": [
"typescript",
"npm",
"translate",
"tree",
"easy"
],
"author": "Emils Webbod",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmilsWebbod/translate/issues"
},
"homepage": "https://github.com/EmilsWebbod/translate#readme",
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@vitest/ui": "^0.25.3",
"coveralls": "^3.1.1",
"fetch-mock": "^9.11.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
},
"peerDependencies": {},
"dependencies": {},
"resolutions": {},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}