-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "@prof-dev/improved-select",
"version": "1.1.24",
"description": "Helper for live clicks events management",
"main": "lib/ImprovedSelect.js",
"types": "lib/ImprovedSelect.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "sass src/improved-select.scss lib/improved-select.css",
"build": "npm run clean && tsc && npm run sass",
"build:only": "tsc && npm run sass",
"publish:patch": "npm version patch && npm run build && npm publish",
"clean": "rimraf lib/*"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Profesor08/improved-select.git"
},
"author": "Profesor08",
"license": "ISC",
"bugs": {
"url": "https://github.com/Profesor08/improved-select/issues"
},
"homepage": "https://github.com/Profesor08/improved-select#readme",
"devDependencies": {
"@types/lodash": "^4.14.195",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@floating-ui/dom": "^1.1.0",
"@prof-dev/event-emitter": "^1.0.9",
"lodash": "^4.17.21"
}
}