This repository has been archived by the owner on Oct 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 2.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "emojidex",
"version": "0.21.2",
"title": "jQuery emojidex",
"description": "emojidex plugin for jQuery/Zepto and compatible",
"author": "emojidex",
"homepage": "https://github.com/emojidex/emojidex-web",
"repository": {
"type": "git",
"url": "https://github.com/emojidex/emojidex-web.git"
},
"license": {
"description": "Licensed under the emojidex Open License",
"type": "emojiOL",
"url": "https://www.emojidex.com/emojidex/emojidex_open_license",
"copyright": "Copyright 2013 the emojidex project / K.K. GenSouSha"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"bootstrap-sass": "^3.3.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^2.1.1",
"del": "^2.2.2",
"dotenv": "^4.0.0",
"eslint": "^6.0.1",
"eslint-config-xo": "^0.26.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-unicorn": "^9.1.1",
"fancy-log": "^1.3.3",
"file-loader": "^4.0.0",
"fs-extra": "^3.0.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-dotenv": "^0.2.1",
"gulp-header": "^2.0.9",
"gulp-jasmine-browser": "^4.1.0",
"gulp-markdown": "^5.1.0",
"gulp-watch": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.4.0",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.1.0",
"jquery-watch": "^1.21.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^3.3.1",
"karma-parallel": "^0.3.1",
"karma-stacktrace": "^2.0.2",
"keysim": "^2.1.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"plugin-error": "^1.0.1",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"puppeteer": "^1.18.1",
"resolve-url-loader": "^3.1.0",
"sass-loader": "^7.1.0",
"script-loader": "^0.7.2",
"url-loader": "^2.0.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-fix-style-only-entries": "^0.3.0"
},
"dependencies": {
"clipboard": "^1.5.5",
"core-js": "3",
"emojidex-client": "^0.21.1",
"jquery.caret": "^0.3.1",
"textcomplete": "^0.17.1",
"textcomplete.contenteditable": "^0.1.1"
},
"scripts": {
"build": "gulp clean-dist; webpack --mode development; webpack --mode production; gulp build",
"build-show": "yarn build; yarn show",
"dev": "webpack --mode development -w",
"show": "browser-sync start -s 'dist' --port 8080",
"test": "gulp clean; webpack --mode development; webpack --mode production; gulp test-prepare; karma start --single-run",
"test-watch": "webpack --mode development; webpack --mode production; karma start"
}
}