-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
126 lines (126 loc) · 6.97 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ts-auto-mock",
"version": "3.7.4",
"description": "Typescript transformer to unlock automatic mock creation for interfaces and classes",
"scripts": {
"build": "npm run build:modules && npm run build:transformer",
"ts-patch:install": "ts-patch install",
"build:debug": "npm run build:modules:debug && npm run build:transformer:debug",
"build:transformer": "webpack --config config/modules/transformer/webpack.js",
"build:transformer:debug": "cross-env DEBUG=true webpack --config config/modules/transformer/webpack.js",
"build:modules": "webpack --config config/modules/webpack.js",
"build:modules:debug": "cross-env DEBUG=true webpack --config config/modules/webpack.js",
"build:transformer:definitelyTyped": "webpack --config config/modules/definitelyTypedTransformer/webpack.functions.js && webpack --config config/modules/definitelyTypedTransformer/webpack.js",
"build:transformer:definitelyTyped:debug": "cross-env DEBUG=true webpack --config config/modules/definitelyTypedTransformer/webpack.functions.js && cross-env DEBUG=true webpack --config config/modules/definitelyTypedTransformer/webpack.js",
"build:playground": "tspc --project ./test/playground/tsconfig.build.json",
"test": "npm run test:transformer && npm run test:noTransformer && npm run test:framework:context && npm run test:framework && npm run test:frameworkDeprecated && npm run test:registerMock && npm run test:createHydratedMock && npm run test:features && npm run test:filesFilter && npm run test:logs && npm run test:unit && npm run test:build",
"test:unit": "cross-env JASMINE_CONFIG=./test/unit/jasmine.json TSCONFIG=./test/tsconfig.json npm run test:common",
"test:transformer": "cross-env JASMINE_CONFIG=./test/transformer/jasmine.json TSCONFIG=./test/transformer/tsconfig.json npm run test:common",
"test:build": "cross-env JASMINE_CONFIG=./test/build/jasmine.json TSCONFIG=./test/build/tsconfig.json npm run test:common",
"test:noTransformer": "cross-env JASMINE_CONFIG=./test/noTransformer/jasmine.json TSCONFIG=./test/tsconfig.json npm run test:common",
"test:registerMock": "cross-env JASMINE_CONFIG=./test/registerMock/jasmine.json TSCONFIG=./test/registerMock/tsconfig.json npm run test:common",
"test:createHydratedMock": "cross-env JASMINE_CONFIG=./test/createHydratedMock/jasmine.json TSCONFIG=./test/createHydratedMock/tsconfig.json npm run test:common",
"test:framework:context": "cross-env JASMINE_CONFIG=./test/frameworkContext/jasmine.json TSCONFIG=./test/frameworkContext/tsconfig.json npm run test:common",
"test:frameworkDeprecated": "cross-env JASMINE_CONFIG=./test/frameworkContext/jasmineDeprecated.json TSCONFIG=./test/frameworkContext/tsconfig.json npm run test:common",
"test:framework": "cross-env JASMINE_CONFIG=./test/framework/jasmine.json TSCONFIG=./test/framework/tsconfig.json npm run test:common",
"test:features": "cross-env JASMINE_CONFIG=./test/features/jasmine.json TSCONFIG=./test/features/tsconfig.json npm run test:common",
"test:filesFilter": "cross-env JASMINE_CONFIG=./test/filesFilter/jasmine.json TSCONFIG=./test/filesFilter/tsconfig.json npm run test:common",
"test:logs": "cross-env JASMINE_CONFIG=./test/logs/jasmine.json TSCONFIG=./test/logs/tsconfig.json npm run test:common",
"test:playground": "cross-env JASMINE_CONFIG=./test/playground/jasmine.json TSCONFIG=./test/playground/tsconfig.json npm run test:common",
"test:playground:build": "cross-env JASMINE_CONFIG=./test/playground/jasmine.build.json TSCONFIG=./test/playground/tsconfig.json npm run test:common",
"test:common": "cross-var ts-node --files -r tsconfig-paths/register --project $TSCONFIG node_modules/jasmine/bin/jasmine --config=$JASMINE_CONFIG",
"dist:collect": "cp -r package.json package-lock.json README.md LICENSE.md dist",
"ts-check:src": "tsc --noEmit",
"eslint": "eslint ./src/**/*.ts ./test/**/*.ts",
"eslint:fix": "eslint --fix ./src/**/*.ts ./test/**/*.ts",
"prettier": "prettier --check **/*.{ts,json}",
"prettier:fix": "npm run prettier -- --write",
"release": "npm run dist:collect && semantic-release",
"postversion": "cp -r package.json ../ && cp -r package-lock.json ../",
"cz": "git-cz",
"commit": "npm run cz",
"commitlint": "commitlint -E $1",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"keywords": [
"typescript",
"spy",
"mock",
"auto"
],
"repository": {
"type": "git",
"url": "https://github.com/Typescript-TDD/ts-auto-mock.git"
},
"author": "Vittorio Guerriero & Giulio Caprino",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@eslint/compat": "1.2.2",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "^11.0.0",
"@stylistic/eslint-plugin": "2.10.1",
"@stylistic/eslint-plugin-ts": "2.10.1",
"@types/jasmine": "^5.1.4",
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/node": "20.16.1",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"all-contributors-cli": "^6.26.1",
"clean-webpack-plugin": "4.0.0",
"commitizen": "^4.3.0",
"conventional-changelog-angular": "8.0.0",
"cross-env": "7.0.3",
"cross-var": "1.1.0",
"cz-customizable": "7.2.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-webpack-plugin": "4.2.0",
"git-branch-is": "4.0.0",
"globals": "15.11.0",
"husky": "9.1.6",
"jasmine": "5.4.0",
"jasmine-spec-reporter": "7.0.0",
"no-emit-webpack-plugin": "4.0.1",
"prettier": "3.3.3",
"regenerator-runtime": "^0.14.1",
"semantic-release": "24.2.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-patch": "3.2.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "6.0.1",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"lodash-es": "4.17.21",
"micromatch": "4.0.8"
},
"peerDependencies": {
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./commitizen.js"
}
},
"engines": {
"npm": ">=6.x.x",
"node": ">=14.x.x"
}
}