-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "@utilitycss/utility",
"version": "1.2.11",
"description": "Generator for Utility CSS frameworks",
"author": "Andrea Moretti (@axyz) <axyzxp@gmail.com>",
"repository": "utilitycss/utility",
"license": "MIT",
"main": "dist",
"typings": "dist",
"scripts": {
"prebuild": "rm -rf dist && copyfiles -u 1 ./src/**/*.html ./src/**/*.css ./dist/",
"build": "tsc -p tsconfig.json",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"build-example": "yarn postcss example/example.css -o example/dist/example.css",
"test": "mocha --require=ts-node/register __tests__/**/*.test.ts"
},
"bin": {
"utility": "dist/cli.js"
},
"dependencies": {
"commander": "7.0.0",
"deepmerge": "^4.2.2",
"open": "^7.4.0",
"chalk": "^4.1.0",
"lodash": "^4.17.20",
"mocha": "^8.3.0",
"postcss": "8.2.6"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/lodash": "^4.14.168",
"@types/node": "^18.17.14",
"@types/prettier": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"assert": "^2.0.0",
"assert-diff": "^3.0.2",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.4",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"prettydiff": "^101.2.6",
"ts-node": "^10.9.1",
"typescript": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --no-config --write",
"eslint --fix"
],
"*.css": [
"prettier --write"
]
}
}