-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
{
"name": "@linkurious/schematics",
"version": "1.0.8",
"description": "Linkurious schematics",
"scripts": {
"prepare": "tsc -b",
"build": "tsc -b tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test:unit": "nyc --reporter=text-summary --reporter=cobertura --report-dir=reports mocha -r ts-node/register/transpile-only --reporter mocha-multi-reporters --reporter-options configFile=.test-reporters.json src/**/*_spec.ts",
"test": "./node_modules/.bin/mocha -r ts-node/register/transpile-only src/**/*_spec.ts",
"lint": "eslint --fix --ext .ts .",
"lint:ci": "eslint -f checkstyle -o reports/checkstyle.xml --ext .ts .",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
"bump:major": "bump2version major && npm version --no-git-tag-version major"
},
"keywords": [
"schematics"
],
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "[ -n \"$BUILD_ID\" ] && exit 0 || lint-staged"
}
},
"files": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.less",
"src/**/*.html",
"src/**/*.json"
],
"author": "",
"license": "MIT",
"schematics": "./src/collection.json",
"devDependencies": {
"@angular-devkit/core": "18.1.3",
"@angular-devkit/schematics": "18.1.3",
"@schematics/angular": "18.1.3",
"@types/chai": "4.2.17",
"@types/mocha": "8.2.2",
"@types/node": "12.11.1",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"@typescript-eslint/typescript-estree": "4.31.1",
"chai": "4.3.4",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "1.2.0",
"lint-staged": "10.5.1",
"mocha": "8.3.2",
"mocha-junit-reporter": "2.0.0",
"mocha-multi-reporters": "1.5.1",
"nyc": "15.1.0",
"prettier": "2.1.2",
"should": "11.1.0",
"typescript": "5.5.4",
"ts-node": "6.2.0"
},
"dependencies": {}
}