-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "@wyntau/schematics",
"version": "0.2.2",
"description": "A schematics",
"scripts": {
"clean": "rm -rf dist && git checkout -- dist",
"watch": "npm run preview -- --watch",
"preview": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.publish.json",
"test": "jasmine dist/**/*_spec.js",
"lint": "npm run eslint",
"eslint": "DEBUG=eslint:cli-engine eslint src",
"eslint-fix": "DEBUG=eslint:cli-engine eslint --fix src",
"prepare": "(husky install 2>/dev/null ||:) && mkdir -p .husky",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"schematics"
],
"files": [
"/dist"
],
"author": "wyntau <wyntau@outlook.com>",
"license": "MIT",
"schematics": "./dist/collection.json",
"dependencies": {
"@angular-devkit/core": "^13.0.0",
"@angular-devkit/schematics": "^13.0.0",
"@schematics/angular": "^13.0.0",
"colorette": "^2.0.16",
"debug": "^4.3.2",
"execa": "^5.1.1",
"schematics-task": "^0.2.9",
"tslib": "^2.3.1",
"type-fest": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/debug": "^4.1.7",
"@types/jasmine": "^3.10.1",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jasmine": "^3.10.0",
"lint-staged": "^12.0.0",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"main": "index.js",
"repository": "git@github.com:wyntau/schematics.git",
"engines": {
"npm": "use-yarn-please"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}