forked from christophbuehler/postcss-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"name": "postcss-angular",
"version": "2.0.1",
"description": "A PostCSS syntax for angular components.",
"main": "dist/index.js",
"scripts": {
"install:global": "npm uninstall -g postcss-angular && npm install -g ./",
"build": "tsc",
"test": "mocha --require ts-node/register --project tsconfig.test.json \"test/**/*.ts\" --no-timeouts",
"install-self": "install-self"
},
"engines": {
"node": "^12 || >=14"
},
"files": [
"dist"
],
"author": "Christoph Bühler",
"license": "ISC",
"devDependencies": {
"@angular/core": "^20.0.x",
"@types/chai": "^4.3.4",
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/winston": "^2.4.4",
"chai": "^4.3.7",
"install-self": "^1.0.0-beta.7",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"postcss-scss": "^4.0.6",
"stylelint": "^15.4.0",
"stylelint-config-standard": "^32.0.0",
"stylelint-scss": "^4.6.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^5.0.1",
"postcss": "^8.4.21",
"winston": "^3.8.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s1seven/postcss-angular.git"
},
"keywords": [
"postcss",
"angular",
"stylelint"
],
"bugs": {
"url": "https://github.com/s1seven/postcss-angular/issues"
},
"homepage": "https://github.com/s1seven/postcss-angular#readme"
}