-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 814 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
{
"name": "@alexskrypnyk/scss-variables-extractor",
"version": "0.1.1",
"description": "Extract SCSS variables to make them available in scripts using vanilla JS.",
"keywords": [
"SCSS",
"variabels"
],
"license": "GPL-2.0-or-later",
"author": "Alex Skrypnyk <alex@drevops.com>",
"contributors": [],
"repository": "github:AlexSkrypnyk/scss-variables-extractor",
"bugs": "https://github.com/AlexSkrypnyk/scss-variables-extractor/issues",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint index.js",
"lint:fix": "eslint --fix index.js",
"test": "qunit"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-airbnb": "^19",
"qunit": "^2"
}
}