forked from joypixels/emojify.js
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
{
"name": "@hackmd/emojify.js",
"version": "3.0.2",
"description": "A Javascript module to convert emoji keywords to images.",
"main": "dist/js/index.min.js",
"browser": "dist/js/emojify-browser.min.js",
"scripts": {
"test": "mocha --config tests/mocha.yml",
"test:watch": "mocha --config tests/mocha.yml --watch",
"test:browser": "karma start",
"lint": "standard",
"prepublishOnly": "npm run clean && npm run build",
"build": "vite build && vite build --config vite.config.node.mts",
"clean": "rimraf dist"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hackmdio/emojify.js.git"
},
"keywords": [
"emoji",
"emojify",
"javascript"
],
"author": "HackMD Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackmdio/emojify.js/issues"
},
"standard": {
"ignore": [
"dist/",
"tests/**/*.js",
"karma.conf.js"
]
},
"devDependencies": {
"@open-wc/karma-esm": "^4.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^5.2.0",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"clean-css": "^5.3.3",
"del": "^8.0.0",
"emoji-datasource-google": "^15.1.2",
"glob": "^11.0.1",
"image-data-uri": "^2.0.1",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"jshint-stylish": "^2.2.1",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^11.1.0",
"puppeteer": "^24.4.0",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.5.0",
"standard": "^17.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.5.3"
}
}