-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "@atsjj/btreemap",
"version": "0.1.0",
"description": "BTreeMap is a library that implements Map based on a B-Tree.",
"homepage": "https://github.com/atsjj/btreemap",
"repository": "https://github.com/atsjj/btreemap",
"author": "Steve Jabour <steve@jabour.me> (https://github.com/atsjj)",
"license": "MIT",
"module": "dist/esm/mod.js",
"main": "dist/cjs/mod.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "deno run -A --unstable build.ts",
"test": "yarn test:fmt && yarn test:lint && yarn test:test",
"test:fmt": "deno fmt --check",
"test:lint": "deno lint --unstable",
"test:test": "deno test"
},
"release-it": {
"hooks": {
"after:bump": [
"yarn build"
],
"after:release": [
"rm -rf dist"
]
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": true
}
}
}