-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.47 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
{
"name": "@theroyalwhee0/istype",
"version": "3.0.5",
"description": "An opinionated type-of library for Javascript and TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adam Mill <hismajesty@theroyalwhee.com> (https://www.theroyalwhee.com)",
"license": "Apache-2.0",
"keywords": [
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/theroyalwhee0/istype.git"
},
"bugs": {
"url": "https://github.com/theroyalwhee0/istype/issues"
},
"homepage": "https://github.com/theroyalwhee0/istype#readme",
"devDependencies": {
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"concurrently": "6.0.0",
"eslint": "8.16.0",
"jest": "28.1.0",
"jsdoc": "3.6.10",
"typescript": "4.7.2"
},
"scripts": {
"build": "mkdir -p ./dist; tsc && cp ./build/src/* ./dist/",
"rebuild": "npm run clean && npm run build && npm run docs",
"clean": "mkdir -p ./dist && [ ! -z \"$(find ./dist/ -maxdepth 1 -type f -print -quit)\" ] && rm -R ./dist/*; true",
"test": "tsc && jest",
"lint": "eslint .",
"test-watch": "npm run build && concurrently 'tsc --watch' 'jest --watchAll'",
"docs": "jsdoc --pedantic --readme ./README.md --recurse --destination docs/ dist/",
"dryrun": "npm prune && npm audit && npm run rebuild && npm run lint && npm test && npm publish --dry-run",
"audit": "npm audit --omit dev"
}
}