-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@dgayerie/tr",
"version": "1.1.0",
"description": "A lightweight library to support i18n",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && terser --compress --mangle --output tr.min.js -- tr.js",
"test": "qunit",
"test:chrome": "karma start --browsers ChromeHeadless .karma.conf.cjs",
"test:firefox": "karma start --browsers FirefoxHeadless .karma.conf.cjs",
"test:browsers": "karma start .karma.conf.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spoonless/trjs.git"
},
"keywords": [
"i18n",
"translation",
"formatting"
],
"author": "David Gayerie",
"license": "MIT",
"bugs": {
"url": "https://github.com/spoonless/trjs/issues"
},
"homepage": "https://github.com/spoonless/trjs#readme",
"devDependencies": {
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-qunit": "^4.1.2",
"qunit": "^2.15.0",
"terser": "^5.7.0",
"typescript": "^4.2.4"
}
}