-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (73 loc) · 2.49 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
{
"name": "angular-web-worker",
"version": "1.0.2",
"description": "Library to assist with web worker communication in Angular apps",
"main": "y",
"scripts": {
"test": "karma start karma.conf.js",
"build:pkg": "ts-node package-script.ts --force",
"build:schematics": "npm run remove:schematics && tsc -p ./schematics/tsconfig.schematics.json && npm run move:schematics",
"move:schematics": "copyfiles -f ./schematics/package.json ./dist/schematics && copyfiles -f ./schematics/collection.json ./dist/schematics && copyfiles -u 3 ./schematics/src/files/**/*.* ./dist/schematics/src/files/ && copyfiles -f ./schematics/src/schema.json ./dist/schematics/src ",
"remove:schematics": "rimraf ./dist/schematics",
"build": "npm run build:pkg && npm run build:schematics"
},
"schematics": "./schematics/collection.json",
"author": {
"name" : "Gavin Leo-Smith",
"email" : "[email protected]"
},
"license": "MIT",
"keywords": [
"angular",
"webworker",
"web worker",
"typescript"
],
"bugs": {
"url": "https://github.com/gleosmith/angular-web-worker/issues"
},
"homepage": "https://github.com/gleosmith/angular-web-worker#readme",
"repository": {
"type" : "git",
"url" : "https://github.com/gleosmith/angular-web-worker.git"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"@angular/core": "~8.0.0"
},
"devDependencies": {
"@angular-devkit/core": "^8.0.0",
"@angular-devkit/schematics": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "~8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@schematics/angular": "^8.0.0",
"@types/jasmine": "^3.3.16",
"@types/sinon": "^7.0.13",
"copyfiles": "^2.1.1",
"core-js": "^3.1.4",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^4.1.1",
"karma-webpack": "^4.0.2",
"ng-packagr": "^5.1.0",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.4",
"ts-node": "~7.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"typescript": "3.4.3",
"webpack": "^4.38.0",
"zone.js": "^0.10.0"
}
}