-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "postcss-angular-inline",
"version": "0.1.0",
"description": "PostCSS syntax for parsing inline CSS of Angular components",
"keywords": [
"postcss",
"angular",
"inline-styles",
"css",
"syntax",
"stylelint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blyedev/postcss-angular-inline.git"
},
"main": "src/index.js",
"files": [
"src/",
"README.md",
"LICENSE"
],
"author": "blyedev",
"license": "ISC",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"type-check": "tsc && echo \"TypeScript compilation successful\"",
"type-check:watch": "watchlist src test --eager -- npm run type-check",
"test": "uvu test -i fixtures",
"test:watch": "watchlist src test --eager -- npm test"
},
"peerDependencies": {
"postcss": "^8.4.49"
},
"devDependencies": {
"@angular/core": "^18.2.12",
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.0",
"globals": "^15.12.0",
"postcss": "^8.4.49",
"prettier": "3.4.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.3",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
},
"dependencies": {
"ts-morph": "^24.0.0"
}
}