-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "@abckey/coinbook",
"version": "0.0.8",
"description": "This is the coin book.",
"author": "abckey <hi@abckey.com>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/abclib/abckey-coinbook.git"
},
"scripts": {
"git": "npx git-cz@4.5.0",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"npm:check": "npx npm-check -u",
"tsc:check": "tsc --noEmit",
"tsc:watch": "npm run tsc:check --watch",
"build:docs": "npx typedoc src --out docs --mode file",
"build": "npx rimraf dist && tsc -d",
"test": "ava -v",
"prepare": "npm run test"
},
"devDependencies": {
"@types/node": "^14.0.1",
"ava": "^3.8.2",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}