-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.41 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
{
"name": "@utilitycss/postcss-for",
"version": "0.0.4",
"description": "PostCSS plugin that enables SASS-like for loop syntax in your CSS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"for",
"loop",
"sass",
"from",
"to",
"iterate",
"nested"
],
"main": "dist",
"author": "Sylvester Aswin Stanley <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:utilitycss/postcss-for.git"
},
"dependencies": {
"postcss": "8.2.6",
"postcss-simple-vars": "6.0.3"
},
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "4.3.0",
"debug": "^4.3.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.0",
"husky": "^4.0.0",
"lint-staged": "^10.5.4",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"typescript": "4.1.5"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --no-config --write",
"eslint --fix"
]
}
}