-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "html-canvas-shape-playground",
"version": "1.0.0",
"description": "A blank HTML Canvas to play with Shapes",
"main": "scripts.js",
"scripts": {
"eleventy:dev": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy",
"scss": "node-sass -o src/includes/css src/styles/main.scss",
"watch:css": "onchange 'src/styles/' -- npm run scss",
"uglify": "uglifyjs src/js/scripts.js -c -o src/js/scripts.min.js",
"start": "run-p eleventy:dev watch:css",
"build": "run-p eleventy:prod uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattdecamp/canvasStainedGlass.git"
},
"keywords": [
"html",
"canvas"
],
"author": "Matt DeCamp",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattdecamp/canvasStainedGlass/issues"
},
"homepage": "https://github.com/mattdecamp/canvasStainedGlass#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"clean-css": "^5.2.2",
"cross-env": "^7.0.3",
"eleventy-plugin-svg-sprite": "^1.2.2",
"html-minifier": "^4.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"uglifyjs": "^2.4.11"
}
}