-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json.template
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json.template
File metadata and controls
51 lines (51 loc) · 1.8 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ode-bootstrap",
"version": "1.5.3-%branch%.%generateVersion%",
"description": "Open Digital Education CSS framework based on bootstrap",
"scripts": {
"copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o",
"dev:lint-fix": "stylelint scss/**/*.scss --fix || echo \"lint faild for some file(s).\"",
"dev:lint": "stylelint scss/**/*.scss || echo \"lint faild for some file(s).\"",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"format": "pnpm run format:write && pnpm run format:check",
"release:build": "pnpm run release:prepare && pnpm run sass:build:release",
"release:clean": "rimraf dist",
"release:prepare": "pnpm run release:clean && pnpm run copy-fonts && cpr assets/ dist/",
"sass:build:release": "sass --load-path=node_modules/ --style=compressed scss/index.scss dist/index.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edificeio/ode-bootstrap.git"
},
"keywords": [
"Bootstrap",
"Framework CSS",
"ODE",
"Theme"
],
"author": "Edifice",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/edificeio/ode-bootstrap/issues"
},
"homepage": "https://github.com/edificeio/ode-bootstrap#readme",
"devDependencies": {
"concurrently": "7.4.0",
"copyfiles": "2.4.1",
"cpr": "3.0.1",
"postcss": "8.4.18",
"prettier": "2.6.0",
"rimraf": "3.0.2",
"sass": "1.55.0",
"stylelint-config-twbs-bootstrap": "6.0.0",
"stylelint": "14.13.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.2.0",
"bootstrap": "5.2.2",
"@popperjs/core":"2.11.6",
"entcore-generic-icons": "edificeio/generic-icons"
},
"files": ["assets", "scss", "dist/version.txt", "dist/icons", "dist/images"]
}