-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
51
{
"name": "@hon2a/less-vars-to-js",
"version": "0.2.0",
"description": "Parse a less variable list and its dependencies and return a map of all resolved variables",
"keywords": [
"less",
"javascript",
"variables",
"theme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hon2a/less-vars-to-js"
},
"author": "Jan Konopásek",
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib"
],
"scripts": {
"format": "prettier --write \"src/**/*.js\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./src",
"test": "jest 'src/'",
"build": "transpile-js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@wisersolutions/eslint-config": "^2.0.1",
"@wisersolutions/eslint-formatter-idea": "^1.0.7",
"@wisersolutions/transpile-js": "^0.0.18",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"less": "^4.1.1",
"prettier": "^2.3.0"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@hon2a/get-regexp-matches": "^0.0.7",
"fs-extra": "^10.0.0"
},
"peerDependencies": {
"less": ">=4.1"
}
}