This repository was archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.38 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
74
75
76
77
78
{
"name": "angular-provide-once",
"version": "0.0.0-development",
"description": "Remove the need to use forRoot in your Angular 2+ modules.",
"scripts": {
"test": "karma start",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"commit": "npm run prepublish && npm test && git-cz",
"prepublish": "ngc && npm run build",
"build": "webpack && cp bundles/main.umd.js bundles/index.js",
"semantic-release": "semantic-release pre && npm publish --tag=next && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/adriancarriger/angular-provide-once.git"
},
"keywords": [
"angular",
"forRoot",
"di",
"dependency injection",
"ng2",
"angular2"
],
"author": "Adrian Carriger <hello@adriancarriger.com> (http://adriancarriger.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriancarriger/angular-provide-once/issues"
},
"main": "bundles/angular-provide-once.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/adriancarriger/angular-provide-once",
"peerDependencies": {
"@angular/core": "^2.0.0"
},
"devDependencies": {
"@angular/common": "2.3.1",
"@angular/compiler": "2.3.1",
"@angular/compiler-cli": "2.3.1",
"@angular/core": "2.3.1",
"@angular/platform-browser": "2.3.1",
"@angular/platform-browser-dynamic": "2.3.1",
"@types/jasmine": "2.5.38",
"@types/node": "6.0.52",
"awesome-typescript-loader": "3.0.0-beta.17",
"codelyzer": "2.0.0-beta.3",
"commitizen": "2.9.2",
"core-js": "2.4.1",
"cz-conventional-changelog": "1.2.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "0.1.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"loader-utils": "0.2.16",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.3",
"semantic-release": "^6.3.2",
"source-map-loader": "0.1.5",
"ts-helpers": "1.1.2",
"tslint": "4.0.2",
"tslint-loader": "3.3.0",
"typescript": "2.0.10",
"webpack": "2.1.0-beta.27",
"zone.js": "0.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}