-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.87 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
45
46
47
48
49
50
51
52
{
"name": "potence",
"version": "0.6.2",
"description": "A tiny modularized JavaScript library providing a variety of convenience functions.",
"keywords": [
"utility",
"convenience",
"helper",
"array",
"object",
"number",
"range",
"string",
"assert"
],
"homepage": "https://github.com/cengels/potence",
"bugs": "https://github.com/cengels/potence/issues",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"readme": "README.md",
"repository": "https://github.com/cengels/potence",
"scripts": {
"build": "rm -rf build && tsc && cp README.md LICENSE package.json build",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"test": "vitest run --typecheck",
"benchmark": "node ./benchmarks/benchmarks.mjs",
"coverage": "vitest run --typecheck --coverage",
"upload-coverage": "curl -s https://codecov.io/bash | bash -s - -s coverage",
"pub": "./scripts/checklist.sh && npm run check-circular-deps && npm run lint && npm run test && npm run build && cd build && npm publish",
"serve-docs": "cd docs && bundle exec jekyll serve",
"check-circular-deps": "npx dpdm src/index.ts --exit-code circular:1 --transform",
"prepublishOnly": "if [ $(basename \"$PWD\") != \"build\" ]; then echo \"Build must be run from build directory.\"; exit 1; fi"
},
"author": "Christopher Engels <cengels@tuta.io> (https://www.cengels.com)",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@typescript-eslint/typescript-estree": "^5.14.0",
"@vitest/coverage-v8": "^1.2.2",
"benny": "^3.6.15",
"dpdm": "^3.8.0",
"eslint": "^7.32.0",
"eslint-plugin-require-extensions": "^0.1.3",
"ts-jest": "^26.5.6",
"ts-morph": "^8.2.0",
"typescript": "^4.8.3",
"vitest": "^1.2.2"
}
}