-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
{
"name": "@scitizen/ngx-schematics",
"version": "0.0.0",
"description": "A collection of schematics for Scitizen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Scitizen/ngx-schematics.git"
},
"bugs": {
"url": "https://github.com/Scitizen/ngx-schematics/issues"
},
"homepage": "https://github.com/Scitizen/ngx-schematics#readme",
"author": "GerkinDev",
"keywords": [
"schematics"
],
"scripts": {
"build": "tsc -p tsconfig.json && copyfiles -u 1 -f src/**/*.json dist",
"build:watch": "watch 'npm run build' src",
"format:pkg": "format-package --write",
"lint": "eslint --config .eslintrc.js '{,src/**/}*.{js,ts}'",
"lint:commit-message:current": "commitlint -E HUSKY_GIT_PARAMS",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run lint && npm run test && npm run build",
"prepare": "rm -rf dist && npm run build",
"release": "standard-version",
"test": "npm run build && jasmine src/**/*_spec.js"
},
"husky": {
"hooks": {
"commit-msg": "npm run lint:commit-message:current",
"pre-commit": "npm run precommit"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"schematics": "./dist/collection.json",
"dependencies": {
"@angular-devkit/core": "^12.0.3",
"@angular-devkit/schematics": "^12.0.3",
"typescript": "~4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@scitizen/eslint-config": "^1.4.0",
"@types/jasmine": "~3.5.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"copyfiles": "^2.4.1",
"eslint": "^7.25.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^32.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-export-all": "^1.1.1",
"format-package": "^6.1.0",
"husky": "^6.0.0",
"jasmine": "^3.5.0",
"standard-version": "^9.2.0",
"typescript": "^4.2.4",
"watch": "^1.0.2"
}
}