-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "japanese-moji",
"version": "1.1.1",
"description": "A toolkit to validate Japanese characters",
"type": "module",
"packageManager": "[email protected]",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/arjunvegda/japanese-moji.git"
},
"keywords": [
"japanese",
"characters",
"moji",
"kana",
"kanji",
"hiragana",
"cjk",
"validator",
"javascript",
"typescript",
"unified",
"ideographs",
"regex",
"utility",
"toolkit",
"fullwidth",
"halfwidth"
],
"author": {
"name": "Arjun Vegda",
"url": "https://arjunvegda.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/arjunvegda/japanese-moji/issues"
},
"homepage": "https://github.com/arjunvegda/japanese-moji#readme",
"source": "./src/index.ts",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/japanese-moji.cjs",
"import": "./dist/japanese-moji.modern.js",
"umd": "./dist/japanese-moji.umd.js"
},
"./package.json": "./package.json"
},
"main": "./dist/japanese-moji.cjs",
"module": "./dist/japanese-moji.module.js",
"unpkg": "./dist/japanese-moji.umd.js",
"files": [
"dist",
"package.json"
],
"scripts": {
"test": "jest",
"test:watch": "yarn run test --watch",
"test:coverage": "yarn run test --coverage",
"test:ci": "yarn run test:coverage --maxWorkers=1",
"prebuild": "rimraf ./dist",
"build": "yarn run prebuild & microbundle build --tsconfig ./tsconfig.build.json --compress --sourcemap false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"commit-lint": "commitlint",
"release": "semantic-release"
},
"engines": {
"node": ">=12.22.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@jest/types": "^27.5.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.4",
"jest": "^27.5.0",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.3.3",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}