-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "@tkrotoff/bootstrap-input-spinner",
"version": "0.21.2",
"description": "Bootstrap 5 spinner/loading/pending indicator for <input>",
"repository": "github:tkrotoff/bootstrap-input-spinner",
"license": "MIT",
"keywords": [
"bootstrap5",
"bootstrap",
"input",
"loading",
"spinner"
],
"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 ./",
"format": "prettier --write '**/*'",
"tsc": "tsc",
"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.10.0-beta.1 && npm publish --tag next --dry-run"
},
"dependencies": {},
"peerDependencies": {
"bootstrap": ">=5"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"@tkrotoff/bootstrap-floating-label": "^0.12.2",
"bootstrap": "^5.2.3",
"husky": "^8.0.3",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-twbs-bootstrap": "^7.0.0",
"stylelint-prettier": "^2.0.0",
"tocbot": "^4.20.1",
"typescript": "^4.9.5"
}
}