-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.85 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
{
"name": "gitmoji-chrome-extension",
"version": "1.0.0",
"repository": "https://gitlab.com/johannchopin/gitmoji-chrome-extension.git",
"author": "johannchopin <[email protected]>",
"maintainers": [
"johannchopin <[email protected]> (https://github.com/johannchopinª)",
"Lyokolux <[email protected]> (https://lyokolux.space)"
],
"license": "MIT",
"scripts": {
"move:all": "yarn move:manifest && yarn move:icons",
"move:icons": "yarn cpy ./static/icons/ ./dist/icons/",
"move:manifest": "yarn cpy ./manifest.json ./dist",
"start": "yarn move:all && yarn parcel ./sandbox/popup-sandbox.html --open ",
"watch": "yarn move:all && yarn parcel watch './src/**/*.(js|html|png)' --public-url .",
"clean": "yarn rimraf ./dist extension.zip",
"build": "yarn clean && yarn move:all && yarn parcel build './src/**/*.(js|html|png)' --no-source-maps && yarn node scripts/zipExtension.js",
"lint": "yarn eslint ./src",
"test": "jest test",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"gitmojis": "^3.13.0",
"node-fetch": "^2.0.0",
"svelte": "^3.43.1",
"svelte-portal": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.8",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^27.2.4",
"cpy": "^9.0.1",
"cpy-cli": "^4.2.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-svelte3": "2.7.3",
"jest": "^27.3.0",
"jest-preview": "^0.3.1",
"jest-transform-svelte": "^2.1.1",
"parcel": "1.12.4",
"parcel-bundler": "^1.12.5",
"parcel-plugin-svelte": "^4.0.8",
"parcel-transformer-svelte": "1.1.2",
"rimraf": "3.0.2",
"svelte-preprocess": "4.9.8",
"zip-folder": "^1.0.0"
}
}