-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 961 Bytes
/
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
{
"name": "@eartharoid/i18n",
"version": "1.0.1",
"description": "Simple and lightweight message localisation",
"main": "dist/index.js",
"types": "types.d.ts",
"files": [
"dist/",
"types.d.ts"
],
"scripts": {
"build": "tsc",
"build-and-test": "npm run build && npm run test",
"lint": "eslint src --ext .ts",
"lint-and-fix": "eslint src --ext .ts --fix",
"test": "ava",
"watch:test": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eartharoid/i18n.git"
},
"keywords": [
"internationalisation",
"i18n"
],
"author": "eartharoid",
"license": "MIT",
"bugs": {
"url": "https://github.com/eartharoid/i18n/issues"
},
"homepage": "https://github.com/eartharoid/i18n#readme",
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"ava": "^3.15.0",
"eslint": "^7.25.0",
"lodash.isequal": "^4.5.0"
}
}