-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "@ng-seattle/community-schematics",
"version": "1.2.4",
"description": "Schematics for the Angular community",
"scripts": {
"build": "tsc -p tsconfig.json",
"commit": "npx git-cz",
"test": "npm run build && npm run clean && npm run test:schematic && npm run test:sandbox",
"unit-test": "npm run build && jasmine src/**/*_spec.js",
"clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox && cd sandbox && npm ci",
"link:schematic": "npm link && cd sandbox && npm link @ng-seattle/community-schematics",
"test:sandbox": "cd sandbox && npm run lint && npm run build",
"test:schematic": "npm run sandbox:ng-add",
"sandbox:ng-add": "cd sandbox && ng g @ng-seattle/community-schematics:ng-add",
"release": "npm run build && npm publish --access public"
},
"keywords": [
"schematics",
"community",
"angular",
"meetup"
],
"files": [
"src"
],
"author": "Brenden Niedermeyer",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^8.2.0",
"@angular-devkit/schematics": "^8.2.0",
"@schematics/angular": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^8.0.0",
"@types/jasmine": "^3.3.9",
"@types/node": "^8.0.31",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.1.0",
"jasmine": "^3.3.1",
"typescript": "~3.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}