-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@ncoderz/superenum",
"version": "0.2.5",
"description": "Simple, typesafe enums in TypeScript, fully compatible with standard JavaScript",
"author": "zx-ncoderz",
"license": "BSD-2-Clause",
"main": "dist/cjs/superenum.js",
"module": "dist/esm/superenum.js",
"types": "dist/types/superenum.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run lint && tsc && tsc --module ES6 --outDir 'dist/esm' && rollup -c && run build-doc",
"build-cjs": "tsc",
"build-esm": "tsc --module ES6 --outDir 'dist/esm'",
"build-iife": "tsc && rollup -c",
"build-doc": "typedoc",
"test": "jest --coverage",
"publish": "yarn npm publish",
"prepublish": "run lint && run clean && run build && run test",
"clean": "shx rm -rf ./dist",
"lint": "eslint --max-warnings 0 -- './**/*.@(tsx|ts|jsx|js|mjs|cjs)'",
"ncu": "yarn dlx npm-check-updates -i"
},
"packageManager": "yarn@4.5.0",
"engines": {
"node": ">=10",
"npm": ">=6.8.0"
},
"keywords": [
"enum",
"enumeration",
"typesafe",
"typescript",
"javascript",
"type",
"key",
"value",
"intellisense",
"ts",
"js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ncoderz/superenum.git"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"core-js": "^3.38.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-arca": "^0.16.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.6.2"
}
}