-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 4.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
{
"name": "ng-starter-library-base",
"version": "1.0.3",
"description": "Angular Starter Library for Libraries",
"private": true,
"scripts": {
"build": "ngm build -p src --clean",
"build:watch": "ngm build -p src --watch --skip-bundles",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular -r 2",
"demo:build": "ng build -prod --aot",
"demo:deploy": "gh-pages -d demo/dist",
"demo:gh-pages": "run-s demo:build demo:deploy",
"e2e": "protractor",
"git-add": "git add -A",
"git-commit-ammend": "git commit --amend --no-edit -n",
"git-commit-changelog": "git commit -am \"chore(changelog): update\"",
"github-release": "conventional-github-releaser -p angular",
"link": "ngm link -p src --here",
"lint": "tslint \"**/*.ts\" -c tslint.json --type-check -t prose -e \"node_modules/**\" -e \"dist/**\" -e \"temp/**\" -e \"scripts/docs/**\"",
"link:fix": "tslint \"**/*.ts\" -c tslint.json --fix --type-check -t prose -e \"node_modules/**\" -e \"dist/**\" -e \"temp/**\" -e \"scripts/docs/**\"",
"postversion": "run-s changelog git-add git-commit-changelog",
"preversion": "npm run build",
"precommit": "npm run lint",
"pree2e": "webdriver-manager update",
"prelink": "npm run build",
"start": "ng serve --host 0.0.0.0",
"test": "karma start",
"test:watch": "karma start",
"view-stats": "webpack-bundle-analyzer demo/dist/stats.json"
},
"main": "bundles/ng-starter-library.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"keywords": [
"ng",
"angular",
"angular2",
"library"
],
"author": "Joshua Godi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jgodi/angular-library-starter.git"
},
"bugs": {
"url": "https://github.com/jgodi/angular-library-starter/issues"
},
"homepage": "https://github.com/jgodi/angular-library-starter#readme",
"peerDependencies": {
"@angular/common": "^2.3.1 || >=4.0.0",
"@angular/compiler": "^2.3.1 || >=4.0.0",
"@angular/core": "^2.3.1 || >=4.0.0",
"@angular/forms": "^2.3.1 || >=4.0.0"
},
"devDependencies": {
"@angular/cli": "1.0.0",
"@angular/common": "^2.4.4",
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"@angular/core": "^2.4.4",
"@angular/forms": "^2.4.4",
"@angular/http": "^2.4.4",
"@angular/language-service": "^2.4.4",
"@angular/platform-browser": "^2.4.4",
"@angular/platform-browser-dynamic": "^2.4.4",
"@angular/router": "^3.4.4",
"@angular/tsc-wrapped": "0.5.1",
"@types/jasmine": "2.5.41",
"@types/marked": "0.0.28",
"@types/node": "7.0.10",
"@types/webpack": "^2.2.2",
"classlist-polyfill": "1.0.3",
"codecov": "2.1.0",
"codelyzer": "3.0.0-beta.0",
"conventional-changelog-cli": "1.3.1",
"conventional-github-releaser": "1.1.3",
"core-js": "^2.4.1",
"cpy": "5.0.0",
"cpy-cli": "1.0.1",
"del-cli": "0.2.1",
"gh-pages": "0.12.0",
"gitignore-to-glob": "0.3.0",
"google-code-prettify": "1.0.5",
"html-loader": "0.4.5",
"husky": "0.13.3",
"jasmine": "2.5.3",
"jasmine-core": "2.5.2",
"jasmine-data-provider": "2.2.0",
"jasmine-spec-reporter": "3.2.0",
"karma": "1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-remap-istanbul": "0.6.0",
"karma-sauce-launcher": "1.1.0",
"karma-typescript": "^3.0.0",
"karma-typescript-angular2-transform": "^1.0.0",
"lodash": "4.17.4",
"markdown-loader": "2.0.0",
"marked": "0.3.6",
"ng2-page-scroll": "4.0.0-beta.4",
"ngm-cli": "0.5.0",
"npm-run-all": "4.0.2",
"protractor": "5.1.1",
"reflect-metadata": "0.1.10",
"require-dir": "0.3.1",
"rxjs": "5.2.0",
"ts-helpers": "^1.1.1",
"ts-node": "^3.0.2",
"tslint": "4.5.1",
"typescript": "2.0.10",
"vrsource-tslint-rules": "^4.0.1",
"webdriver-manager": "12.0.4",
"webpack-bundle-analyzer": "2.3.1",
"zone.js": "0.7.7"
}
}