-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@saithodev/ts-appversion",
"version": "1.3.0",
"description": "Reads the version from your packages.json and saves it in a .ts file you can include into your application.",
"main": "dist/index.js",
"bin": {
"ts-appversion": "dist/cli.js"
},
"scripts": {
"start": "node dist/index.js",
"test": "nyc --reporter=text --reporter=lcov mocha",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"angular",
"typescript",
"git",
"version"
],
"author": "Mario Lubenka",
"license": "MIT",
"repository": "https://github.com/saitho/ng-appversion",
"dependencies": {
"colors": "^1.3.3",
"git-commit-info": "^2.0.0",
"git-describe": "^4.0.4",
"yargs": "^16.1.1"
},
"devDependencies": {
"@saithodev/semantic-release-sharedconf-npm": "^2.1.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"lodash": "^4.17.19",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}