generated from metachris/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.36 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
{
"name": "@nathanpb/kext",
"version": "1.6.3",
"description": "Kotlin inspired extension library for declarative programming with NodeJS",
"author": "Nathan P. Bombana <nathan.pbombana@gmail.com>",
"repository": "https://github.com/NathanPB/kext",
"license": "MIT",
"types": "./index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"bench": "jest --projects jest-bench.config.json",
"bench:poc": "jest --projects jest-bench-poc.config.json",
"clean": "rm -rf dist coverage docs/api 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 && rm -rf node_modules/@nathanpb/kext && ln -s \"$PWD/src\" node_modules/@nathanpb/kext",
"dev:docs": "docsify serve docs"
},
"devDependencies": {
"@nathanpb/jest-bench": "^0.1.6-1",
"@types/jest": "^27.0.1",
"@types/node": "14.x",
"docsify-cli": "^4.4.3",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typedoc": "^0.25.12",
"typescript": "^4.4.4",
"yarn": "^1.22.17"
},
"engines": {
"node": ">= 14.0.0"
}
}