-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.69 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
{
"name": "single-spa-angular-cli",
"version": "0.4.2",
"description": "Helpers for building single-spa applications which use Angular Cli",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc && babel src --out-dir lib && ng-packagr -p ng-package.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:PlaceMe-SAS/single-spa-angular-cli.git"
},
"keywords": [
"single-spa",
"angular",
"cli"
],
"author": "Robin Coma Delperier",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PlaceMe-SAS/single-spa-angular-cli/issues"
},
"homepage": "https://github.com/PlaceMe-SAS/single-spa-angular-cli#readme",
"dependencies": {
},
"devDependencies": {
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/compiler-cli": "^5.2.9",
"@angular/core": "^5.2.9",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"ng-packagr": "^2.2.0",
"rimraf": "^2.6.2",
"typescript": "^2.6.2"
},
"peerDependenies": {
"@angular/common": "^5.2.9",
"@angular/core": "^5.2.9",
"@types/core-js": "^0.9.45",
"rxjs": "^5.5.6"
}
}