-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "emoji-provider",
"description": "Adds a simple way of generating emojis",
"version": "1.0.6",
"type": "module",
"main": "./lib/index.js",
"scripts": {
"start": "node lib/index.js",
"lint": "npx eslint ./lib || exit 0",
"lint:fix": "npx eslint ./lib --fix || exit 0",
"test": "npx --node-options=--experimental-vm-modules jest --verbose=true || exit 0"
},
"keywords": [
"emojis",
"emoji",
"emoticon",
"no-dependency",
"javascript",
"js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emiliaajax/emoji-provider.git"
},
"author": "Emilia Hansson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emiliaajax/emoji-provider/issues"
},
"homepage": "https://github.com/emiliaajax/emoji-provider#readme",
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.0.3"
}
}