-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 KB
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
{
"name": "@leanup/stack-angular",
"version": "2.0.0-rc.82",
"description": "This package contains the Angular framework extension for the @leanup/cli.",
"author": "Martin Oppitz <npmjs@martinoppitz.com>",
"homepage": "https://leanupjs.org",
"main": "dist/cjs/webpack.config.js",
"module": "dist/mjs/webpack.config.js",
"types": "dist/types/webpack.config.d.ts",
"exports": {
".": {
"require": "./dist/cjs/webpack.config.js",
"import": "./dist/mjs/webpack.config.js"
}
},
"files": [
"dist"
],
"keywords": [
"babel",
"webpack",
"angular",
"sinon",
"nyc",
"nightwatch",
"mocha",
"sass",
"typescript",
"cli",
"spa",
"pwa",
"lean",
"compiler",
"transpiler"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/leanupjs/leanup.git"
},
"bugs": {
"url": "https://github.com/leanupjs/leanup/issues"
},
"dependencies": {
"babel-loader": "8.3.0"
},
"devDependencies": {
"@angular/compiler-cli": "14.2.12",
"@leanup/stack-webpack": "2.0.0-rc.82",
"@types/node": "18.11.18",
"rimraf": "4.0.5",
"tslib": "2.4.1",
"typescript": "4.8.4"
},
"peerDependencies": {
"@angular/compiler-cli": "^14",
"@angular/core": "^14",
"@leanup/stack-webpack": "~2.0.0-rc.79",
"@ngtools/webpack": "^14"
},
"scripts": {
"build:cjs": "tsc --outDir dist/cjs -p tsconfig.cjs.json && node ../../../../scripts/package.js dist/cjs commonjs",
"build:mjs": "tsc --outDir dist/mjs -p tsconfig.mjs.json && node ../../../../scripts/package.js dist/mjs module",
"build:rm": "rimraf dist",
"build:types": "tsc -d --outDir dist/types -p tsconfig.mjs.json && rimraf dist/types/*.{js,map} dist/types/**/*.{js,map}",
"build": "npm run build:rm && npm run build:cjs && npm run build:mjs && npm run build:types",
"prepack": "npm run build"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}