-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.2 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": "svelte-intl",
"version": "1.1.4",
"description": "Internationalize your Svelte 3 apps",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "tslint --project tsconfig.json",
"test": "jest --verbose --silent --coverage",
"build": "rm -rf dist && rollup -c",
"prepublish": "npm test && npm run build"
},
"keywords": [
"svelte",
"3",
"svelte-3",
"svelte3",
"format-message",
"intl",
"i18n"
],
"author": "Cristóvão Trevisan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Panya/svelte-intl"
},
"bugs": {
"url": "https://github.com/Panya/svelte-intl/issues"
},
"homepage": "https://github.com/Panya/svelte-intl",
"peerDependencies": {
"format-message": "^6.2.1",
"svelte": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"format-message": "^6.2.3",
"jest": "^26.0.0",
"rollup": "2.21.0",
"rollup-plugin-typescript2": "^0.27.1",
"svelte": "^3.24.0",
"ts-jest": "^26.1.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.0"
}
}