forked from izelnakri/paper_trail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.39 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
{
"private": true,
"name": "paper_trail",
"author": "Izel Nakri",
"version": "0.14.3",
"description": "[![Hex Version](http://img.shields.io/hexpm/v/paper_trail.svg?style=flat)](https://hex.pm/packages/paper_trail) [![Hex docs](http://img.shields.io/badge/hex.pm-docs-green.svg?style=flat)](https://hexdocs.pm/paper_trail/PaperTrail.html) [![Total Download](https://img.shields.io/hexpm/dt/paper_trail.svg)](https://hex.pm/packages/paper_trail) [![License](https://img.shields.io/hexpm/l/paper_trail.svg)](https://github.com/izelnakri/paper_trail/blob/main/LICENSE) [![Last Updated](https://img.shields.io/github/last-commit/izelnakri/paper_trail.svg)](https://github.com/izelnakri/paper_trail/commits/main)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/izelnakri/paper_trail.git"
},
"scripts": {
"changelog:unreleased": "node_modules/.bin/auto-changelog --stdout --commit-limit false --package --unreleased-only --hide-credit --sort-commits date-desc",
"changelog:preview": "node_modules/.bin/auto-changelog --stdout --commit-limit false --package -u --sort-commits date-desc",
"changelog:update": "node_modules/.bin/auto-changelog --commit-limit false --package --sort-commits date-desc",
"release:alpha": "node_modules/.bin/release-it --preRelease=alpha --no-npm.publish && MIX_ENV=dev mix hex.publish --yes",
"release:beta": "node_modules/.bin/release-it --preRelease=beta --no-npm.publish && MIX_ENV=dev mix hex.publish --yes",
"release": "node_modules/.bin/release-it --no-npm.publish && MIX_ENV=dev mix hex.publish --yes",
"test": "mix test test/paper_trail && mix test test/version && mix test test/uuid && STRING_TEST=true mix test test/uuid"
},
"license": "MIT",
"release-it": {
"plugins": {
"@j-ulrich/release-it-regex-bumper": {
"in": "package.json",
"out": {
"file": "mix.exs",
"search": {
"pattern": "@version \"([0-9.]+)\""
},
"replace": "@version \"{{version}}\""
}
}
},
"git": {
"changelog": "npm run changelog:preview"
},
"github": {
"release": true
},
"hooks": {
"after:bump": "npm run changelog:update"
}
},
"devDependencies": {
"@j-ulrich/release-it-regex-bumper": "^3.0.0",
"auto-changelog": "^2.3.0",
"release-it": "^14.11.6"
},
"volta": {
"node": "15.3.0"
}
}