This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
forked from toggl/track-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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": "toggl-button",
"version": "1.14.0",
"description": "Add Toggl one-click time tracking to popular web tools.",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": ">=8.11.3"
},
"scripts": {
"start": "webpack-cli --mode development --watch",
"build": "webpack-cli --mode production --env.production",
"xo": "xo"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining"
]
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"Firefox ESR"
],
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"useTabs": false
},
"xo": {
"envs": [
"browser",
"commonjs",
"es6",
"webextensions"
],
"ignores": [
"src/**"
],
"prettier": true
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/preset-env": "7.1.0",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "0.1.19",
"compression-webpack-plugin": "1.1.11",
"copy-webpack-plugin": "4.5.2",
"filemanager-webpack-plugin": "2.0.1",
"nanoid": "1.2.6",
"prettier": "1.13.7",
"webpack": "4.16.3",
"webpack-cli": "3.1.0",
"webpack-log": "1.2.0",
"xo": "0.21.1"
},
"dependencies": {
"bugsnag-js": "4.7.2"
}
}