-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 877 Bytes
/
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
{
"name": "less2scss",
"version": "1.9.2",
"description": "This utility quickly converts all your less files to scss.",
"main": "index.js",
"bin": {
"less2scss": "bin/less2scss"
},
"author": "Andrea Debernardi",
"license": "ISC",
"engines": {
"node": ">=14"
},
"files": [
"bin",
"index.js"
],
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git://github.com/debba/less2scss.git"
},
"keywords": [
"less",
"scss",
"convertor"
],
"bugs": {
"url": "https://github.com/debba/less2scss/issues"
},
"homepage": "https://www.debbaweb.it",
"dependencies": {
"colors": "^1.4.0",
"commander": "^10.0.0",
"glob": "^9.0.1",
"ignore": "^5.1.8",
"mkdirp": "^2.1.3",
"string.prototype.replaceall": "^1.0.5"
},
"devDependencies": {
"ava": "^5.1.0"
}
}