-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1.12 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
{
"name": "aho-corasick-viz",
"version": "1.0.0",
"homepage": "https://wiomoc.de",
"maintainers": [
{
"name": "Christoph Walcher",
"email": "[email protected]"
}
],
"description": "Aho-Corasick Visualizer",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.dev.js",
"deployAWS": "aws s3 cp dist s3://wiomoc.de/aho-corasick-viz --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --recursive",
"deployGH": "rm -rf dist/; git worktree prune; git worktree add dist gh-pages && webpack --config webpack.dev.js && cd dist/ && git add . && git commit -m \"Release\" && git push -u origin gh-pages && cd .. && git worktree prune"
},
"keywords": [],
"license": "BSD",
"devDependencies": {
"css-loader": "^3.1.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.1.14"
}
}