-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "check-ends-with-period",
"version": "3.0.2",
"description": "Check the text is ends with period mark.",
"keywords": [
"text",
"natural-language",
"nlp"
],
"homepage": "https://github.com/azu/check-ends-with-period",
"bugs": {
"url": "https://github.com/azu/check-ends-with-period/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/check-ends-with-period.git"
},
"license": "MIT",
"author": "azu",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": "./lib/index.js"
}
},
"main": "./lib/index.js",
"module": "./module/index.js",
"types": "./module/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"build": "tsc -p . && tsc -p ./tsconfig.cjs.json && tsconfig-to-dual-package",
"watch": "tsc -p . --watch",
"prepublishOnly": "npm run build",
"test": "mocha",
"clean": "git clean -fx module/ lib/"
},
"dependencies": {
"emoji-regex": "^10.1.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"tsconfig-to-dual-package": "^1.0.7",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]"
}