-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
{
"name": "@foxify/i18n",
"version": "1.1.1",
"description": "A lightweight translation module for Node.js and browser",
"author": {
"name": "Ardalan Amini",
"email": "[email protected]",
"url": "https://ardalanamini.com"
},
"license": "MIT",
"homepage": "https://github.com/foxifyjs/i18n#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/foxifyjs/i18n.git"
},
"bugs": {
"url": "https://github.com/foxifyjs/i18n/issues"
},
"keywords": [
"translate",
"translation",
"international",
"internationalization",
"i18n"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run build && npm test",
"build": "tsc",
"watch": "npm run build -- --watch",
"lint": "tslint -p tsconfig.json -c tslint.json --exclude '**/*.d.ts'",
"test": "jest --runInBand",
"coverage": "npm test -- --coverage",
"codecov": "npm run build && npm run coverage -- --runInBand && codecov"
},
"peerDependencies": {
"prototyped.js": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"codecov": "^3.5.0",
"jest": "^24.9.0",
"prototyped.js": "^1.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.6.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"node"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*\\.ts"
]
}
}