-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
132 lines (132 loc) · 5.11 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
{
"name": "angular-playground",
"version": "10.1.0",
"description": "A drop in app module for working on Angular components in isolation (aka Scenario Driven Development).",
"module": "dist/playground/fesm2015/angular-playground.mjs",
"es2020": "dist/playground/fesm2020/angular-playground.mjs",
"esm2020": "dist/playground/esm2020/angular-playground.mjs",
"fesm2020": "dist/playground/fesm2020/angular-playground.mjs",
"fesm2015": "dist/playground/fesm2015/angular-playground.mjs",
"typings": "dist/playground/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/playground/index.d.ts",
"esm2020": "./dist/playground/esm2020/angular-playground.mjs",
"es2020": "./dist/playground/fesm2020/angular-playground.mjs",
"es2015": "./dist/playground/fesm2015/angular-playground.mjs",
"node": "./dist/playground/fesm2015/angular-playground.mjs",
"default": "./dist/playground/fesm2020/angular-playground.mjs"
}
},
"sideEffects": false,
"bin": {
"angular-playground": "dist/bin/index.js"
},
"files": [
"dist"
],
"jest": {
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testURL": "http://localhost"
},
"scripts": {
"build": "npm run playground:build && npm run cli:build && npm run schematics:build && npm run copy-jest-files",
"rebuild": "npm run clean && npm run build",
"clean": "rm -f -r dist",
"playground:build": "ng build playground --configuration production && rm dist/playground/package.json",
"cli:build": "tsc -p ./projects/cli/tsconfig.json",
"copy:schemas": "cp projects/schematics/src/sandbox/schema.json dist/schematics/sandbox",
"copy:schematicFiles": "cd ./projects/schematics/src && cp -r --parent ./**/files/* ../../../dist/schematics && cp -r --parent ./**/**/files/* ../../../dist/schematics",
"copy:sandboxFiles": "cp -r projects/schematics/src/sandbox/files dist/schematics/sandbox",
"copy:collection": "cp projects/schematics/src/collection.json dist/schematics/collection.json",
"copy:migration": "cp projects/schematics/src/migrations/migrations.json dist/schematics/migrations/migrations.json",
"schematics:build": "tsc -p ./projects/schematics/tsconfig.json",
"prepublishOnly": "npm run rebuild",
"test": "jest",
"copy-jest-files": "rm -f -r dist/jest && cd dist && mkdir jest && cd .. && cp projects/jest/src/* dist/jest",
"postbuild": "npm run copy:schemas && npm run copy:sandboxFiles && npm run copy:collection && npm run copy:migration && npm run copy:schematicFiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoCreate/angular-playground.git"
},
"keywords": [
"angular"
],
"author": {
"name": "SoCreate",
"url": "https://SoCreate.it"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SoCreate/angular-playground/issues"
},
"homepage": "http://www.angularplayground.it",
"schematics": "./dist/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"ng-update": {
"migrations": "./dist/schematics/migrations/migrations.json"
},
"peerDependencies": {
"@angular/common": ">=14.0.0",
"@angular/compiler": ">=14.0.0",
"@angular/core": ">=14.0.0",
"@angular/forms": ">=14.0.0",
"@angular/platform-browser": ">=14.0.0",
"@angular/platform-browser-dynamic": ">=14.0.0",
"rxjs": ">=7.5.0",
"tslib": ">=2.3.0",
"zone.js": ">=0.11.4"
},
"dependencies": {
"@angular-devkit/core": "^14.0.0",
"@angular-devkit/schematics": "^14.0.0",
"@jest/core": "28.1.3",
"@jest/types": "28.1.3",
"@schematics/angular": "^14.0.0",
"async": "^3.2.0",
"chalk": "^4.1.1",
"commander": "^7.2.0",
"get-port": "^5.1.1",
"jest": "28.1.3",
"jest-image-snapshot": "5.2.0",
"mockdate": "^3.0.5",
"node-watch": "^0.7.1",
"puppeteer": "^13.1.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.0",
"@angular/cli": "14.0.0",
"@angular/common": "14.0.0",
"@angular/compiler": "14.0.0",
"@angular/compiler-cli": "14.0.0",
"@angular/core": "14.0.0",
"@angular/forms": "14.0.0",
"@angular/language-service": "14.0.0",
"@angular/platform-browser": "14.0.0",
"@angular/platform-browser-dynamic": "14.0.0",
"@types/jest": "28.1.3",
"@types/node": "^15.3.0",
"@types/puppeteer": "^5.4.3",
"jest-environment-jsdom": "28.1.3",
"ng-packagr": "14.0.0",
"rxjs": "~7.5.0",
"ts-jest": "28.0.8",
"tslib": "^2.3.0",
"typescript": "~4.7.2",
"zone.js": "~0.11.4"
}
}