-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
63
64
65
66
67
68
69
{
"name": "css-vars-adapter",
"version": "0.2.6",
"license": "MIT",
"author": {
"name": "Dmitry Filatov",
"email": "Naboos@yandex.com",
"url": "https://github.com/Naboska"
},
"homepage": "https://github.com/Naboska/css-vars-adapter",
"repository": {
"type": "git",
"url": "https://github.com/Naboska/css-vars-adapter"
},
"bugs": {
"url": "https://github.com/Naboska/css-vars-adapter/issues"
},
"keywords": [
"css vars",
"css variables",
"styles vars"
],
"files": [
"dist/"
],
"scripts": {
"build": "yarn clean && yarn build:module && yarn build:system",
"build:system": "NODE_ENV=production webpack",
"build:module": "tsc",
"clean": "rimraf dist",
"lint": "eslint \"./**/*.ts\" --fix",
"test": "jest"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "^8.2.2",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"webpack": "^5.10.2",
"webpack-cli": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint",
"yarn test"
]
}
}