-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "neutral-face-emoji-tools",
"version": "3.3.0",
"description": "Tools that make life as a Slack emoji addict a little easier.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c -w",
"build": "rollup -c && npm run copy-static",
"copy-static": "ncp src/manifest.json dist/manifest.json && ncp src/images/ dist/images"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fauntleroy/neutral-face-emoji-tools.git"
},
"keywords": [
"slack",
"emoji",
"upload",
"extension",
"chrome"
],
"author": "Timothy Kempf <[email protected]> (http://kemp59f.info)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fauntleroy/neutral-face-emoji-tools/issues"
},
"homepage": "https://github.com/Fauntleroy/neutral-face-emoji-tools#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rollup": "^2.8.2",
"rollup-plugin-embed-css": "^1.0.16",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-svelte": "^5.2.1",
"svelte": "^3.22.2"
},
"dependencies": {
"axios": "^0.19.2",
"axios-concurrency": "^1.0.3",
"file-selector": "^0.1.12",
"lodash": "^4.17.15",
"uuid": "^2.0.1"
}
}