-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
{
"name": "@weccoframework/i18n",
"version": "0.4.0",
"description": "A simple, minimalistic i18n framework for use in browser",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/weccoframework/i18n.git"
},
"homepage": "https://github.com/weccoframework/i18n",
"devDependencies": {
"typescript": "^5.4.4",
"mocha": "^10.4.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.5",
"ts-node": "^10.9.2",
"iko": "^0.6.0",
"sinon": "^17.0.1",
"@types/sinon": "^17.0.3",
"nyc": "^15.1.0",
"rollup": "^4.14.0",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"tslint": "^6.1.3"
},
"main": "dist/weccoframework-i18n.min.js",
"module": "dist/weccoframework-i18n.min.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "mocha --require ts-node/register test/**/*.test.ts",
"coverage": "nyc mocha --require ts-node/register test/**/*.test.ts",
"lint": "tslint -p tslint.json"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}