This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
139 lines (139 loc) · 3.73 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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "udk",
"version": "1.1.11-rc.5",
"description": "Universal Development Kit",
"license": "MIT",
"author": "Steven Enten <steven@enten.fr>",
"keywords": [
"udk",
"universal",
"development",
"kit"
],
"homepage": "https://github.com/enten/udk",
"bugs": {
"url": "https://github.com/enten/udk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/enten/udk"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"udk": "./bin/udk.js",
"udkc": "./bin/udkc.js",
"ng-udkc": "./angular/bin/ng-udkc.js"
},
"builders": "./angular/builders.json",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc --project ./tsconfig.json",
"postbuild": "copyfiles -e 'coverage/**/*' -e 'dist/**/*' -e 'docs/**/*' -e 'examples/**/*' -e 'node_modules/**' '**/*.d.ts' '*/**/*.json' '**/*.js' '**/*.md' 'LICENSE' 'package.json' '.npmignore' 'dist'",
"devkit:install": "cd ./scripts/tslint-rules && tsc",
"coverage": "jest --coverage",
"lint": "tslint --project ./tslint.json",
"node": "ts-node -r tsconfig-paths/register",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"^.+\\.d\\.ts$",
"<rootDir>/angular/",
"<rootDir>/examples/",
"<rootDir>/scripts/",
"<rootDir>/test/",
"<rootDir>/bin/udk.ts",
"<rootDir>/bin/udk-webpack4.ts",
"<rootDir>/bin/udkc.ts",
"<rootDir>/lib/webpack.v3.ts",
"<rootDir>/lib/webpack.v4.ts"
],
"globals": {
"ts-jest": {
"babelConfig": true
}
},
"moduleFileExtensions": [
"js",
"json",
"node",
"ts"
],
"moduleNameMapper": {
"^@architect/udk$": "<rootDir>/angular/lib/index",
"^@architect/udk/(.*)$": "<rootDir>/angular/$1",
"^udk$": "<rootDir>/lib/index",
"^udk/(.*)$": "<rootDir>/$1"
},
"rootDir": ".",
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/|_)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/dist/",
"<rootDir>/docs/",
"<rootDir>/examples/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"@webpack-contrib/config-loader": "^1.2.1",
"debug": "^4.3.2",
"dependency-graph": "^0.11.0",
"exit-hook": "^2.2.1",
"killer": "^0.1.0",
"resolve": "^1.20.0",
"watchpack": "^1.7.5",
"webpack-hot-middleware": "^2.25.0",
"webpack-plugin-compat": "^1.0.4",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.8",
"@angular/cli": "^11.2.8",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.22",
"@types/loader-utils": "^2.0.2",
"@types/node": "^14.14.37",
"@types/resolve": "^1.20.0",
"@types/rimraf": "^3.0.0",
"@types/text-table": "^0.2.1",
"@types/watchpack": "^1.1.6",
"@types/webpack": "^4.41.27",
"@types/webpack-merge": "^4.1.5",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rxjs": "^6.6.7",
"ts-jest": "^26.5.4",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-no-circular-imports": "^1.0.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.6.0",
"webpack-command": "^0.5.1",
"webpack-merge": "^5.7.3"
},
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"engines": {
"node": ">=8.0.0",
"pnpm": ">=2.0.0",
"npm": ">=5.0.0"
}
}