-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "@tkrotoff/bootstrap-floating-label",
"version": "0.12.2",
"description": "Bootstrap 5 Floating Label",
"repository": "github:tkrotoff/bootstrap-floating-label",
"license": "MIT",
"keywords": [
"bootstrap5",
"bootstrap",
"floating",
"float",
"label"
],
"files": [
"src/"
],
"scripts": {
"clean": "rm -rf dist .parcel-cache",
"clean:all": "npm run clean && rm -rf node_modules package-lock.json",
"start": "npm run clean && parcel example/index.html --open",
"build": "npm run clean && parcel build example/index.html --public-url ./",
"build:dev": "npm run clean && NODE_ENV=development parcel build example/index.html --no-optimize --public-url ./",
"tsc": "tsc",
"format": "prettier --write '**/*'",
"lint": "stylelint '**/*.scss' && npm run tsc",
"prepare": "husky install",
"precommit": "npm run format && npm run lint && npm run build",
"prepush": "npm run precommit",
"prepublishOnly": "npm run build",
"npm:update": "npm run clean:all && npx npm-check-updates --upgrade && npm install",
"publish:beta": "npm version 0.7.0-beta.1 && npm publish --tag next --dry-run",
"count-loc:build:css": "find dist -name '*.css' | xargs wc -l"
},
"dependencies": {},
"peerDependencies": {
"bootstrap": ">=5"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.9.1",
"bootstrap": "^5.3.0",
"husky": "^8.0.3",
"parcel": "^2.9.1",
"prettier": "^2.8.8",
"stylelint": "^15.6.3",
"stylelint-config-twbs-bootstrap": "^10.0.0",
"stylelint-prettier": "^3.0.0",
"typescript": "^5.1.3"
}
}