forked from serebrov/emoji-mart-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.2 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
93
94
95
96
97
98
99
100
101
102
{
"name": "emoji-mart-vue",
"version": "2.6.6",
"description": "Customizable Slack-like emoji picker for VueJS",
"main": "dist/emoji-mart.js",
"repository": {
"type": "git",
"url": "[email protected]:jm-david/emoji-mart-vue.git"
},
"keywords": ["vue", "vuejs", "emoji", "picker"],
"author": "Etienne Lemay",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jm-david/emoji-mart-vue/issues"
},
"homepage": "https://github.com/jm-david/emoji-mart-vue",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.4",
"vue-virtual-scroller": "^1.0.0-beta.5"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"css-loader": "^0.28.0",
"emoji-datasource": "4.0.4",
"emojilib": "^2.2.1",
"inflection": "1.10.0",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"postcss-loader": "^3.0.0",
"prettier": "1.16.4",
"size-limit": "^0.11.4",
"url-loader": "^0.5.8",
"vue": "^2.5.18",
"vue-jest": "^3.0.3",
"vue-loader": "^15.6.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.18",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"clean": "rm -rf dist/",
"build:data": "node scripts/build-data",
"build:dist": "webpack --config src/webpack.config.js",
"build:dist-stats":
"webpack --config src/webpack.config.js --profile --json > stats.json",
"build:docs": "webpack --config docs/webpack.config.js",
"build": "npm run clean && npm run build:data && npm run build:dist",
"dev:docs": "webpack -w --config docs/webpack.config.js",
"start": "npm run dev:docs",
"stats":
"webpack --config ./spec/webpack.config.js --json > spec/stats.json",
"size-limit": "size-limit",
"test": "NODE_ENV=test jest && size-limit",
"jest": "jest --detectOpenHandles --forceExit --coverage",
"jest-debug":
"node --inspect=0.0.0.0:9230 --inspect-brk node_modules/.bin/jest --runInBand",
"jest-clear": "jest --clearCache",
"prepublishOnly": "npm run build",
"prettier-check": "prettier --check \"{src,spec}/**/*.js\"",
"prettier": "prettier --write \"{src,spec}/**/*.js\""
},
"jest": {
"testMatch": ["**/spec/*-spec.+(ts|tsx|js)"],
"moduleFileExtensions": ["js", "vue"],
"snapshotSerializers": ["jest-serializer-vue"],
"transform": {
".+\\.vue$": "vue-jest",
".+\\.jsx?$": "babel-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$":
"jest-transform-stub"
},
"moduleNameMapper": {
".+\\.css$": "<rootDir>/spec/css-stub.js"
},
"transformIgnorePatterns": ["^.+\\.css$", "<rootDir>/node_modules/"]
},
"size-limit": [
{
"path": "dist/emoji-mart.js",
"limit": "80 KB"
}
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": ["last 3 version", "IE >= 11", "iOS >= 9"]
}