-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 1.83 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
{
"name": "history-here",
"version": "1.0.1",
"description": "Browser extension that answers: 🧐 Have I seen this page already?",
"main": "popup.js",
"dependencies": {
"babel-plugin-emotion": "^10.0.15",
"date-fns": "^1.30.1",
"emotion": "^10.0.14",
"hyperapp": "^2.0.1",
"timeago.js": "^3.0.2"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-latest": "6.24.1",
"chrome-webstore-upload-cli": "1.2.0",
"copy-webpack-plugin": "5.0.4",
"dot-json": "1.1.0",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.14.3",
"npm-run-all": "4.1.5",
"webext": "1.9.1-with-submit.1",
"webpack": "4.39.2"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"release": "cd extension && webstore upload --auto-publish",
"update-version": "dot-json extension/manifest.json version $(date -u +%y.%-m.%-d.%-H%M)",
"format": "prettier --trailing-comma --write 'src/**/*.js'"
},
"author": "",
"license": "ISC",
"babel": {
"plugins": [
"emotion",
[
"transform-runtime",
{
"helpers": false,
"polyfill": false
}
],
[
"transform-react-jsx",
{
"pragma": "h"
}
],
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 3 Chrome versions"
]
}
}
]
]
}
}