-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 906 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
{
"name": "confusables",
"version": "1.1.0",
"license": "MIT",
"description": "A library to interact with Unicode Confusables in strings.",
"repository": {
"type": "git",
"url": "git+https://github.com/gc/confusables.git"
},
"bugs": {
"url": "https://github.com/gc/confusables/issues"
},
"homepage": "https://github.com/gc/confusables",
"main": "dist/index.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext ts --fix",
"test:lint": "eslint src --ext ts",
"test": "yarn build && ts-node ./test.ts",
"build": "tsc",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@oldschoolgg/eslint-config": "^1.2.5",
"@types/node": "^17.0.7",
"eslint": "^8.6.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"dist"
],
"engines": {
"node": ">=10",
"npm": ">=6"
}
}