-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
103 lines (103 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@ngneat/tailwind",
"version": "1.0.0",
"description": "A schematic that adds TailwindCSS to Angular applications",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors init",
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*.spec.js",
"test:ci": "jasmine src/**/*.spec.js",
"commit": "git-cz",
"release": "standard-version"
},
"keywords": [
"tailwindcss",
"angular",
"cli",
"schematics"
],
"author": "Chau Tran",
"repository": {
"type": "git",
"url": "https://github.com/ngneat/tailwind.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": true
}
]
},
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "10.1.0",
"@angular-devkit/schematics": "10.1.0",
"@angular/cdk": "10.2.0",
"@schematics/angular": "10.1.0",
"rxjs": "6.6.2",
"typescript": "3.9.7"
},
"devDependencies": {
"@types/jasmine": "3.5.14",
"@types/node": "14.6.4",
"all-contributors-cli": "6.17.2",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"jasmine": "3.6.1",
"standard-version": "^9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"chore": {
"description": "🤖 Build process or auxiliary tool changes",
"value": "chore"
},
"ci": {
"description": "🎡 CI related changes",
"value": "ci"
},
"docs": {
"description": "️✏️ Documentation only changes",
"value": "docs"
},
"feat": {
"description": "🎸 A new feature",
"value": "feat"
},
"fix": {
"description": "🐛 A bug fix",
"value": "fix"
},
"perf": {
"description": "️⚡ A code change that improves performance",
"value": "perf"
},
"refactor": {
"description": "💡 A code change that neither fixes a bug or adds a feature",
"value": "refactor"
},
"release": {
"description": "🏹 Create a release commit",
"value": "release"
},
"style": {
"description": "💄 Markup, white-space, formatting, missing semi-colons...",
"value": "style"
},
"test": {
"description": "💍 Adding missing tests",
"value": "test"
}
}
}
}
}