-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "runningcalculator",
"version": "1.0.0",
"description": "A simple calculator to track you run and walking paces",
"main": "formula.js",
"scripts": {
"autoprefixer": "postcss -u autoprefixer -r _site/css/*",
"uglify": "uglifyjs ./src/js/app.js --source-map -m --output ./src/js/main.js",
"serve": "eleventy --serve",
"scss": "node-sass --output-style compressed -o src/css src/scss",
"watch:css": "onchange 'src/scss' -- npm run scss",
"start": "run-p serve watch:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattdecamp/runningcalculator.git"
},
"keywords": [
"calculator",
"running",
"javascript"
],
"author": "Matt DeCamp",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattdecamp/runningcalculator/issues"
},
"homepage": "https://github.com/mattdecamp/runningcalculator#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"autoprefixer": "^10.3.1",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-cli": "^9.1.0",
"uglify-js": "^3.14.4"
}
}