-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "sass-vars-convertor",
"version": "0.0.1",
"description": "sass-vars-convertor is a Library to easily pass Sass variables convert JSON.",
"scripts": {
"prepare": "husky install",
"build": "rollup --config rollup.config.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"typings": "cjs/index.d.ts",
"files": [
"cjs/",
"esm/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"dependencies": {
"@ungap/from-entries": "^0.2.1",
"camelcase-keys": "^6.2.2",
"fibers": "^5.0.0",
"node-sass-json-functions": "^3.1.0",
"postcss": "^8.2.13",
"postcss-scss": "^3.0.5",
"sass": "^1.32.12",
"strip-outer": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"rollup": "^2.46.0"
}
}