forked from ndp/git-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
{
"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",
"clean": "rm -f git-cheatsheet/*.map git-cheatsheet/*.js ./git-cheatsheet/styles.css",
"test": "jasmine spec/*_spec.js spec/*_spec.mjs",
"start": "static -p 9090"
},
"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": "*",
"@babel/core": "*",
"@babel/preset-env": "*",
"browserlist": "*",
"jasmine": "*",
"jquery": "*",
"node-static": "*",
"webpack": "*",
"webpack-cli": "*"
}
}