forked from koala-interactive/is-emoji-supported
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "@spotxyz/is-emoji-supported",
"version": "0.0.7",
"description": "Detect if the current device support the specified emoji",
"main": "./dist/cjs/@spotxyz/is-emoji-supported.js",
"module": "./dist/esm/@spotxyz/is-emoji-supported.js",
"sideEffects": false,
"browser": {
"./dist/cjs/@spotxyz/is-emoji-supported.js": "./dist/umd/@spotxyz/is-emoji-supported.js"
},
"files": [
"dist/",
"index.d.ts"
],
"scripts": {
"test": "npm run test:jest && npm run test:cypress",
"test:cypress": "cypress run",
"test:jest": "jest",
"lint": "tsc",
"build": "del dist && rollup -c"
},
"author": "Vincent Thibault <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koala-interactive/is-emoji-supported/issues"
},
"repository": "github:koala-interactive/is-emoji-supported",
"keywords": [
"is-emoji-supported",
"support",
"detect",
"emoji",
"emojione",
"joypixel"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^28.1.3",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.6",
"cypress": "^5.0.0",
"del-cli": "^5.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "2.0.5",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}