-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
39 lines (39 loc) · 1.32 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
{
"browserslist": "> 0.05%, not dead",
"name": "git-cheatsheet",
"version": "1.0.0",
"description": "Git Cheatsheet",
"main": "git-cheatsheet.html",
"scripts": {
"build": "yarn build-js && yarn build-styles",
"build-js": "webpack --entry ./src/git-cheatsheet.js -o ./git-cheatsheet/ --mode production --target browserslist --devtool source-map",
"build-styles": "node ./src/build-styles.js",
"docker-build": "docker build -t git-cheatsheet .",
"docker-run": "docker run -p 8080:8080 git-cheatsheet",
"clean": "rm -f git-cheatsheet/*.map git-cheatsheet/*.js ./git-cheatsheet/styles.css",
"test": "jasmine spec/*_spec.mjs",
"start": "npx http-server",
"start-docker": "npm run docker-build && npm run docker-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndp/git-cheatsheet.git"
},
"author": "Andrew J. Peterson / NDP Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndp/git-cheatsheet/issues"
},
"homepage": "https://github.com/ndp/git-cheatsheet#readme",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"browserlist": "*",
"jasmine": "^5.1.0",
"jquery": "^3.7.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]"
}