-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.16 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
{
"name": "@nathanpb/progress",
"version": "3.1.0",
"description": "Library for creating highly customizable CLI-like progress bars in javascript",
"types": "./index.d.ts",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/NathanPB/progress.js",
"author": "Nathan P. Bombana <[email protected]>(https://github.com/NathanPB)",
"scripts": {
"test": "jest",
"clean": "rm -rf dist coverage docs/api docs/README.md benchmarks",
"docs": "typedoc --entryPoints src/index.ts --out docs/api && cp README.md docs",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json && cp package.json dist && cp README.md dist && cp LICENSE dist",
"prerelease": "yarn build",
"release": "cd dist && npm publish --access public",
"dev": "mkdir -p node_modules/@nathanpb && ln -s \"$PWD/src\" node_modules/@nathanpb/progress",
"dev:docs": "docsify serve docs"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^18",
"docsify-cli": "^4.4.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.23.1",
"typescript": "^4.5.2"
},
"dependencies": {}
}