This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 3.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "scully-plugin-toc",
"version": "3.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build scully-toc",
"build:lib": "ng build scully-plugin-toc --prod",
"lint": "ng lint",
"format": "prettier --write \"projects/**/*.ts\"",
"prebuild:lib": "npm run format && npm run lint && echo Using TypeScript && tsc --version",
"postbuild:lib": "npm run copy && npm run addVersion",
"copy": "copyfiles CHANGELOG.md README.md LICENSE dist/scully-plugin-toc",
"addVersion": "cd dist/scully-plugin-toc && npm version -allow-same-version \"$(node -e \"console.log(require('../../package.json').version)\")\"",
"release": "standard-version && npm run build:lib",
"release:beta": "standard-version --prerelease && npm run build:lib",
"publish": "cd dist/scully-plugin-toc && npm publish",
"test": "jest",
"test:watch": "jest --watch",
"test:manual": "npm run build:lib && npm run build -- --prod && npm run scully && npm run scully:serve",
"scully": "scully --scanRoutes",
"scully:serve": "scully serve"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@scullyio/ng-lib": "^1.1.1",
"@scullyio/scully": "^1.1.1",
"jsdom": "^16.5.3",
"rxjs": "~6.5.5",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.0",
"@angular-devkit/build-ng-packagr": "^0.1000.0",
"@angular/cli": "~12.0.0",
"@angular/compiler-cli": "~12.0.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@scullyio/init": "^1.1.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "25.2.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.2",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.2.5",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "26.6.3",
"jest-preset-angular": "8.4.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.0.0",
"prettier": "^2.3.0",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.2.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "jest-preset-angular",
"roots": [
"projects"
],
"transform": {
"^.+\\.(ts|js|html)$": "ts-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/projects/setup-jest.ts"
],
"moduleNameMapper": {},
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/projects/scully-plugin-toc/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$",
"astTransformers": [
"jest-preset-angular/build/InlineFilesTransformer",
"jest-preset-angular/build/StripStylesTransformer"
]
}
}
}
}