-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.12 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prettier-plugin-css-grid",
"version": "0.1.2",
"description": "An opinionated CSS Grid formatter.",
"author": "Aaron Casanova",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronccasanova/prettier-plugin-css-grid.git"
},
"bugs": {
"url": "https://github.com/aaronccasanova/prettier-plugin-css-grid/issues"
},
"homepage": "https://github.com/aaronccasanova/prettier-plugin-css-grid#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev-css": "prettier --plugin . dev/example.css",
"dev-css2": "prettier --plugin . dev/example2.css",
"dev-scss": "prettier --plugin . dev/example.scss",
"dev-less": "prettier --plugin . dev/example.less",
"build": "rollup -c",
"test": "jest",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"ci": "npm run build && npm run test && npm run lint && npm run type-check"
},
"keywords": [
"prettier",
"plugin",
"css",
"grid",
"css-grid",
"grid-template-areas",
"grid-areas"
],
"dependencies": {
"@types/postcss-less": "^4.0.1",
"postcss": "^8.4.4",
"postcss-css-grid": "^0.0.2",
"postcss-less": "^5.0.0",
"postcss-scss": "^4.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.4.4",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.4",
"rollup": "^2.61.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"jest": {
"transform": {
"\\.[jt]sx?$": [
"babel-jest",
{
"configFile": "./babel-jest.config.js"
}
]
}
}
}