-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"devDependencies": {
"@angular-devkit/schematics": "^13.0.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/debug": "^4.1.7",
"@types/jasmine": "^5.0.0",
"@types/node": "^16.11.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jasmine": "^5.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.4.1",
"typescript": "^5.0.0"
},
"dependencies": {
"debug": "^4.3.2",
"tslib": "^2.3.1"
},
"scripts": {
"eslint": "DEBUG=eslint:cli-engine eslint .",
"eslint-fix": "DEBUG=eslint:cli-engine eslint --fix .",
"prepare": "(husky install 2>/dev/null ||:) && mkdir -p .husky",
"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",
"prepublishOnly": "npm run clean && npm run build"
},
"name": "schematics-task",
"version": "0.2.9",
"description": "add and run task like schematics's NodePackageInstallTask",
"main": "dist/task/register.js",
"repository": "[email protected]:wyntau/schematics-task.git",
"author": "wyntau <[email protected]>",
"license": "MIT",
"files": [
"/dist"
],
"keywords": [
"schematics",
"schematics-cli",
"angular-cli",
"task"
],
"peerDependencies": {
"@angular-devkit/schematics": "^13.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}