forked from Craga89/less-plugin-variables-output
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "@liang610/less-plugin-variables-export",
"version": "1.0.1",
"description": "Adds output of all (not only top-level) variables to a JSON file(s)",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/liang610/less-plugin-variables-export.git"
},
"keywords": [
"less",
"plugin",
"variable",
"export",
"output",
"json"
],
"author": "Craig Michael Thompson <[email protected]>",
"contributors": [
"Adam Kusmierz <[email protected]>",
"Yi-Liang Lai <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/liang610/less-plugin-variables-export#readme",
"engines": {
"node": ">6.0.0"
},
"files": [
"lib"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-import": "^0.13.0",
"eslint-plugin-import": "^2.16.0",
"less": "^3.9.0",
"mocha": "^6.0.2",
"rimraf": "^2.6.3"
},
"dependencies": {}
}