-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "text-resource-manager",
"version": "1.0.0",
"description": "Lightweight text manager for managing texts from a localized json file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Silind/text-resource-manager.git"
},
"keywords": [
"javascript",
"typescript",
"resource",
"manager"
],
"author": "Silind Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/Silind/text-resource-manager/issues"
},
"homepage": "https://github.com/Silind/text-resource-manager#readme",
"dependencies": {
"json-schema-to-typescript": "^6.1.3"
},
"devDependencies": {
"@types/node": "^12.0.12",
"typescript": "^3.5.2",
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/**/*.test.(ts|tsx)"
],
"collectCoverage": true
}
}