-
Notifications
You must be signed in to change notification settings - Fork 232
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "emoji-js",
"version": "3.8.0",
"description": "A JS Emoji conversion library",
"main": "lib/emoji.js",
"files": [
"LICENSE",
"README.md",
"CHANGES.md",
"lib"
],
"dependencies": {
"emoji-datasource": "15.0.1"
},
"devDependencies": {
"jasmine-core": "~3.7",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "~2.0",
"karma-jasmine": "^4.0.2",
"karma-story-reporter": "^0.3.1",
"puppeteer": "~9.1.1",
"uglify-js": "^3.17.4",
"minimatch": "^3.0.5"
},
"repository": {
"type": "git",
"url": "git://github.com/iamcal/js-emoji.git"
},
"keywords": [
"emoji",
"emoticon",
"mobile",
"browser"
],
"author": "Cal Henderson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamcal/js-emoji/issues"
},
"homepage": "https://github.com/iamcal/js-emoji",
"scripts": {
"compile": "php build/build.php > lib/emoji.js",
"uglify": "echo \"/* $(npm -s run env echo '$npm_package_name') $(date +%Y-%m-%d) */\" > lib/emoji.min.js; ./node_modules/.bin/uglifyjs -c -m -- lib/emoji.js >> lib/emoji.min.js",
"test": "./node_modules/.bin/karma start karma.conf.js --single-run --log-level error",
"coverage": "./node_modules/.bin/karma start karma-cover.conf.js --single-run --log-level disable",
"build": "npm run compile && npm run uglify && npm run test && npm run coverage"
}
}