forked from ivangabriele/mattermost-uno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
{
"name": "mattermost-uno",
"version": "1.9.3",
"description": "Unofficial Chrome & Firefox extension bringing some Slack-like features into Mattermost.",
"license": "MIT",
"private": true,
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && yarn build:background && yarn build:content",
"build:background": "rollup -c ./rollup.config.background.js",
"build:content": "rollup -c ./rollup.config.content.js",
"build:release": "yarn build && node ./scripts/ci/build_release.js",
"build:watch": "concurrently \"yarn build:background --watch\" \"yarn build:content --watch\"",
"ci:generate:release_notes": "node ./scripts/ci/generate_release_notes.js",
"dev": "cross-env NODE_ENV=development yarn build:watch",
"test": "yarn test:lint && yarn test:unit",
"test:lint": "eslint ./src/**/*.js",
"test:unit": "jest",
"preversion": "node ./scripts/build/version.js",
"postversion": "git push origin HEAD && git push --tags"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/runtime": "7.9.6",
"@types/chrome": "0.0.106",
"archiver": "4.0.1",
"concurrently": "5.2.0",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"crx": "5.0.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"jest": "25.5.4",
"keep-a-changelog": "0.10.0",
"moment": "2.25.1",
"numeral": "2.0.6",
"prettier": "1.19.1",
"ramda": "0.27.0",
"rimraf": "3.0.2",
"rollup": "2.7.6",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-filesize": "8.0.2",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0"
},
"browserslist": [
"chrome 73",
"chrome 74",
"chrome 75",
"firefox 60",
"firefox 67",
"firefox 68"
],
"author": {
"name": "Ivan Gabriele",
"email": "ivan.gabriele@gmail.com",
"url": "https://www.ivangabriele.com"
}
}