-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.65 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.65 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
{
"name": "chnglg",
"version": "0.5.3",
"description": "A maintainer and contributor-friendly tool for generating a human-readable CHANGELOG.md",
"bin": {
"chnglg": "bin/index.mjs"
},
"files": [
"bin/index.mjs"
],
"scripts": {
"build": "spago -x bin/spago.dhall build --purs-args=\"--strict --censor-lib -g corefn,js\"",
"bundle:optimize": "purs-backend-es build --int-tags",
"bundle:esbuild": "esbuild --bundle --outfile=bin/index.mjs --platform=node --format=esm --charset=utf8 bin/index.prod.mjs",
"bundle:exec": "chmod +x bin/index.mjs",
"bundle": "npm run build && npm run bundle:optimize && npm run bundle:esbuild && npm run bundle:exec",
"build:test": "spago build --purs-args=\"--strict --censor-lib\"",
"test:ci": "spago -x test.dhall test",
"test": "npm run build:test && npm run bundle && npm run test:ci",
"format": "purs-tidy format-in-place src bin test",
"check": "purs-tidy check src bin test",
"prepublishOnly": "rm -rf output bundle bin/index.js && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purescript-contrib/uplog.git"
},
"keywords": [
"PureScript",
"changelog"
],
"author": "Jordan Martinez <[email protected]> (https://github.com/jordanmartinez/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/purescript-contrib/uplog/issues"
},
"homepage": "https://github.com/purescript-contrib/uplog#readme",
"devDependencies": {
"esbuild": "^0.19.3",
"purescript": "^0.15.10",
"purescript-psa": "^0.8.2",
"purs-backend-es": "^1.4.2",
"purs-tidy": "^0.10.0",
"spago": "^0.21.0"
}
}