-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "text-direction",
"version": "2.0.1",
"description": "Get the text direction from the browser.",
"main": "text-direction.js",
"type": "module",
"exports": {
"default": "./text-direction.js"
},
"scripts": {
"lint": "eslint text-direction.js",
"test": "ava",
"prepublishOnly": "npm run lint && npm test"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"ava": {
"require": [
"@pencil.js/test-environment"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GMartigny/text-direction.git"
},
"keywords": [
"ltr",
"rtl",
"i18n"
],
"author": "Guillaume Martigny <guillaume.martigny@gmail.com> (https://www.guillaume-martigny.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GMartigny/text-direction/issues"
},
"homepage": "https://github.com/GMartigny/text-direction#readme",
"devDependencies": {
"@gmartigny/eslint-config": "^2.1.0",
"@pencil.js/test-environment": "^1.2.1",
"ava": "^5.3.1",
"eslint": "^8.49.0"
}
}