-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
108 lines (108 loc) · 2.99 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
106
107
108
{
"name": "smile2emoji",
"version": "3.17.0",
"description": "Plugin to convert from text smile to emoticons. Emoji from punctuation",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"files": [
"lib/",
"index.d.ts"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"build:types": "tsc --emitDeclarationOnly",
"build": "tsc && babel src --out-file lib/index.cjs --extensions \".ts,.tsx\"",
"prepare": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/emish89/smile2emoji"
},
"keywords": [
"emoji",
"npm",
"module",
"node",
"emoticons",
"smile",
"smiley",
"text",
"punctuation",
"javascript"
],
"author": "Federico Ballarini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emish89/smile2emoji/issues"
},
"homepage": "https://github.com/emish89/smile2emoji#readme",
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/eslint-parser": "7.26.5",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/register": "7.25.9",
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-preset-minify": "0.5.2",
"chai": "5.1.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"globals": "^15.13.0",
"mocha": "11.0.1",
"nyc": "17.1.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.18.0"
},
"overrides": {
"@typescript-eslint/eslint-plugin": {
"eslint": "$eslint"
},
"eslint-config-airbnb": {
"eslint": "$eslint"
},
"eslint-plugin-import": {
"eslint": "$eslint"
},
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
},
"typescript-eslint": {
"eslint": "$eslint"
}
},
"type": "module"
}