-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "bundesliga-charts",
"version": "2.0.1",
"description": "Graphs points and places for the Bundesliga table",
"scripts": {
"build": "concurrently npm:build-*",
"dev": "concurrently npm:dev-server npm:watch-*",
"dev-server": "lite-server --baseDir=docs",
"build-pug": "pug3 src/pug/index.pug -o docs",
"watch-pug": "pug3 -w src/pug/index.pug -o docs",
"build-js": "mkdir -p docs && uglifyjs --compress --mangle -o docs/main.min.js -- src/js/**.js",
"watch-js": "nodemon --watch src -e js -x 'npm run build-js'",
"build-sass": "sass src/sass/main.scss --style compressed --no-source-map docs/main.min.css",
"watch-sass": "sass --watch src/sass/main.scss --style compressed --no-source-map docs/main.min.css",
"postinstall": "node ./node_modules/frontend-dependencies/index.js",
"build-dist": "frontend-dependencies",
"watch-dist": "npm run build-dist",
"clean": "rimraf ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimothyEarley/Bundesliga-charts.git"
},
"keywords": [
"bundesliga",
"graphs"
],
"author": "Timothy Earley",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimothyEarley/Bundesliga-charts/issues"
},
"homepage": "https://github.com/TimothyEarley/Bundesliga-charts#readme",
"devDependencies": {
"concurrently": "6.3.0",
"lite-server": "2.6.1",
"nodemon": "2.0.13",
"@anduh/pug-cli": "1.0.0-alpha8",
"rimraf": "3.0.2",
"sass": "1.42.1",
"uglify-es": "3.3.9"
},
"dependencies": {
"frontend-dependencies": "1.1.8"
},
"frontendDependencies": {
"target": "docs/vendor",
"packages": {
"chart.js": {
"version": "2.8.0",
"src": "dist/Chart.bundle.min.js"
}
}
}
}