-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 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
{
"name": "@entva/emojify",
"description": "Converts emojis to images",
"author": "Max Degterev <[email protected]>",
"license": "MIT",
"repository": "github:entva/emojis",
"bugs": "https://github.com/entva/emojis/issues",
"version": "1.1.0",
"keywords": [
"emoji",
"emojione",
"joypixels",
"emojify",
"emojitsu"
],
"files": [
"lib/",
"vendor/"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"check": "npm test && npm run lint && echo \"\\033[0;32mReady to publish\\033[0m\"",
"clean": "rm -rf ./lib/ ./.tmp || exit 1",
"build": "npm run build:typescript && npm run build:babel",
"build:babel": "NODE_ENV=production babel src --out-dir lib --extensions \".ts,.js\"",
"build:typescript": "tsc --project ./tsconfig.build.json",
"prepublishOnly": "npm run check && npm run clean && npm run build",
"generate": "npm run build:babel && node run.js generate",
"start": "npm run build:babel && node preview.js",
"lint": "eslint ./",
"lint:tofile": "eslint --format junit -o reports/junit/js-lint-results.xml ./",
"test": "npm run build:babel && TZ='GMT' mocha \"test/**/*.js\"",
"test:tofile": "npm run build:babel && TZ='GMT' mocha --no-colors -R xunit --reporter-options output=reports/junit/js-test-results.xml \"test/**/*.js\""
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-strict-mode": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.3",
"@entva/browserslist-config": "^1.0.0",
"@types/escape-html": "^1.0.4",
"emoji-assets": "^8.0.0",
"eslint": "^8.52.0",
"eslint-config-entva-typescript": "^1.0.0",
"express": "^4.18.2",
"kleur": "^4.1.5",
"lodash.difference": "^4.5.0",
"lodash.uniq": "^4.5.0",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"needle": "^3.3.1",
"regexgen": "^1.3.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"emoji-assets": ">=8.0.0"
},
"dependencies": {
"escape-html": "^1.0.3"
}
}