-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "as-enum",
"version": "1.3.1",
"license": "MIT",
"description": "An enumeration management tool built using TypeScript.",
"author": "astfn",
"keywords": [
"as-enum",
"asEnum",
"enum",
"astfn",
"Ashun"
],
"repository": {
"type": "git",
"url": "https://github.com/astfn/as-enum"
},
"type": "module",
"main": "lib/as-enum.cjs",
"module": "lib/as-enum.mjs",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"publish:npm": "npm run build && npm publish",
"format": "prettier --config .prettierrc . --write",
"lint": "eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.2",
"globals": "^15.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^8.3.0"
}
}