forked from mattlewis92/angular-gauge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.95 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.95 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
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
{
"name": "angular-gauge",
"version": "3.0.0",
"description": "A tiny angular 5.0+ wrapper for https://github.com/naikus/svg-gauge",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:dist": "ng-packagr -p package.json",
"build:clean": "del-cli dist",
"test": "karma start --single-run && npm run build:dist && npm run build:clean",
"test:watch": "karma start --auto-watch",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && npm run build:demo && npm run compodoc && git add . && git commit -m \"chore: build demo and docs\" && git push && git checkout master",
"copyfiles": "copyfiles CHANGELOG.md dist",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"commitmsg": "validate-commit-msg",
"codecov": "cat coverage/lcov.info | codecov",
"prettier": "prettier --write",
"precommit": "lint-staged"
},
"lint-staged": {
"{demo,src,test}/**/*.ts": [
"npm run prettier",
"git add"
]
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts",
"externals": {
"svg-gauge": "Gauge"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-gauge.git"
},
"keywords": [
"angular2",
"angular",
"angular4",
"angular5",
"gauge",
"svg-gauge"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-gauge/issues"
},
"homepage": "https://github.com/mattlewis92/angular-gauge#readme",
"devDependencies": {
"@angular/common": "^5.1.2",
"@angular/compiler": "^5.1.2",
"@angular/compiler-cli": "^5.1.2",
"@angular/core": "^5.1.2",
"@angular/platform-browser": "^5.1.2",
"@angular/platform-browser-dynamic": "^5.1.2",
"@compodoc/compodoc": "^1.0.5",
"@types/chai": "^4.0.10",
"@types/html-webpack-plugin": "^2.28.0",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.26",
"@types/webpack": "^3.8.1",
"chai": "^4.1.2",
"codecov-lite": "^0.1.3",
"codelyzer": "^4.0.2",
"commitizen": "^2.8.1",
"concurrently": "^3.0.0",
"copyfiles": "^1.2.0",
"core-js": "^2.5.3",
"cz-conventional-changelog": "^2.0.0",
"del-cli": "^1.1.0",
"fork-ts-checker-webpack-plugin": "^0.2.10",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"ng-packagr": "2.0.0-rc.7",
"prettier": "^1.9.2",
"rxjs": "^5.5.6",
"sinon": "^4.1.3",
"sinon-chai": "^2.8.0",
"standard-version": "^4.0.0",
"ts-loader": "^3.2.0",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"tslint-config-mwl": "^0.2.1",
"tslint-loader": "^3.5.2",
"typescript": "~2.5.3",
"validate-commit-msg": "^2.12.1",
"webpack": "^3.10.0",
"webpack-angular-externals": "^1.0.0",
"webpack-dev-server": "^2.2.0",
"webpack-rxjs-externals": "^1.0.0",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^5.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"svg-gauge": "1.0.4"
}
}