forked from lusakasa/saka-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "saka-key",
"description": "A keyboard interface to the web",
"scripts": {
"clean": "rimraf dist",
"format": "prettier-eslint 'src/**/*.js' --write",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"build":
"echo \"You must specify the target browser (firefox or chrome). Example: npm run build:firefox\"",
"build:prod":
"echo \"You must specify the target browser (firefox or chrome). Example: npm run build:firefox:prod\"",
"build:chrome":
"npm run clean && webpack --config webpack.config.js --env=dev:chrome:benchmark --progress --colors",
"build:firefox":
"npm run clean && webpack --config webpack.config.js --env=dev:firefox:benchmark --progress --colors",
"build:chrome:prod":
"npm run clean && webpack --config webpack.config.js --env=prod:chrome:nobenchmark --progress --colors && npm run",
"build:firefox:prod":
"npm run clean && webpack --config webpack.config.js --env=prod:firefox:nobenchmark --progress --colors && npm run",
"build:firefox:beta":
"npm run clean && webpack --config webpack.config.js --env=prod:firefox:nobenchmark:firefoxBeta --progress --colors",
"build:chrome:benchmark":
"npm run clean && webpack --config webpack.config.js --env=prod:chrome:benchmark --progress --colors",
"build:firefox:benchmark":
"npm run clean && webpack --config webpack.config.js --env=prod:firefox:benchmark --progress --colors",
"zip": "bestzip dist.zip dist/*",
"zip-chrome-prod": "bestzip dist-chrome-prod.zip dist/*",
"zip-firefox-prod": "bestzip dist-firefox-prod.zip dist/*",
"zip-firefox-beta": "bestzip dist-firefox-beta.zip dist/*",
"zip-chrome-debug": "bestzip dist-chrome-debug.zip dist/*",
"zip-firefox-debug": "bestzip dist-firefox-debug.zip dist/*",
"zip-all":
"npm run build:chrome && npm run zip-chrome-debug && npm run build:firefox && npm run zip-firefox-debug && npm run build:chrome:prod && npm run zip-chrome-prod && npm run build:firefox:prod && npm run zip-firefox-prod && npm run build:firefox:beta && npm run zip-firefox-beta",
"book:dev": "cd book && npm run dev",
"book:build": "cd book && npm run build",
"book:publish": "cd book && npm run publish"
},
"bin": {
"keyplug": "keyplug/index.js"
},
"lint-staged": {
"*.{js,json,css}": ["prettier-eslint --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lusakasa/saka-key.git"
},
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.0.40",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"bestzip": "^1.1.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-preact": "^1.1.6",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.2.0",
"eslint-plugin-standard": "^3.0.1",
"generate-json-webpack-plugin": "^0.2.2",
"gitbook-cli": "^2.3.2",
"html-loader": "^0.4.5",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"markdown-loader": "^2.0.0",
"prettier-eslint": "^8.0.0",
"prettier-eslint-cli": "^4.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"compare-versions": "^3.0.1",
"marked": "^0.3.6",
"material-components-web": "^0.19.0",
"mosi": "^1.6.0",
"preact": "^7.2.0",
"preact-redux": "^2.0.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"smoothscroll-polyfill": "^0.3.5",
"webextension-polyfill":
"git+https://github.com/lusakasa/webextension-polyfill.git"
}
}