-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "get-css-variables",
"version": "1.0.0",
"description": "Import CSS variables into a JavaScript Object",
"keywords": [
"css"
],
"homepage": "https://github.com/OlofFredriksson/get-css-variables#readme",
"bugs": {
"url": "https://github.com/OlofFredriksson/get-css-variables/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlofFredriksson/get-css-variables.git"
},
"license": "MIT",
"author": "Olof",
"main": "dist/index.js",
"bin": "./bin/get-css-variables.js",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "babel src/index.js --out-file dist/index.js",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"lint": "run-s eslint prettier:check",
"lint:fix": "run-s eslint:fix prettier:write",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"test": "jest",
"postversion": "git push --follow-tags",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,json,md,css}": "prettier --write",
"package.json": "npx sort-package-json -c"
},
"dependencies": {
"@adobe/css-tools": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@forsakringskassan/eslint-config": "^11.4.0",
"@forsakringskassan/eslint-config-cli": "^11.4.0",
"@forsakringskassan/eslint-config-jest": "^11.4.1",
"babel-jest": "^29.7.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"npm-run-all2": "^7.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">= 18.0"
}
}