forked from musterknabe/translate.js
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "translate.js",
"version": "1.3.2",
"description": "Javascript micro library for translations (i18n) with support for placeholders and multiple plural forms.",
"devDependencies": {
"@rollup/plugin-buble": "0.21.1",
"benchmark": "2.1.4",
"onchange": "6.1.0",
"ospec": "^4.0.1",
"prettier": "1.19.1",
"rollup": "2.0.6"
},
"scripts": {
"prepublishOnly": "npm run test",
"build": "rollup -c && cp src/*.d.ts .",
"_test": "node_modules/.bin/ospec src/test.js",
"test": "npm run format && npm run build && npm run _test",
"format": "prettier rollup.config.js src/*.js pluralize/*.js *.md --write",
"dev": "onchange './src/*.js' -- npm run test"
},
"repository": {
"type": "git",
"url": "[email protected]:StephanHoyer/translate.js.git"
},
"keywords": [
"translation",
"translate",
"i18n",
"js",
"javascript",
"micro",
"library"
],
"author": {
"name": "Jonas Girnatis",
"email": "[email protected]"
},
"module": "index.js",
"main": "common.js",
"types": "index.d.ts",
"contributors": [
{
"name": "Stephan Hoyer",
"email": "[email protected]"
},
{
"name": "Már Örlygsson",
"url": "http://mar.anomy.net/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/StephanHoyer/translate.js/issues"
},
"homepage": "https://github.com/StephanHoyer/translate.js"
}