-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "extended-enum",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"version": "1.0.1",
"description": "An extension to grant java-like powers to typescript enums",
"author": "inhibitor <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "npx eslint .",
"typecheck": "npx tsc -p tsconfig.check.json",
"clean": "rm -rf dist/",
"compile:cjs": "npx tsc -p tsconfig.build-cjs.json",
"compile:esm": "npx tsc -p tsconfig.build-esm.json",
"generate:esm-extensions": "node scripts/generateEsmExtension.js",
"post-compile": "scripts/post-compile.sh",
"build": "yarn clean && yarn compile:cjs && yarn compile:esm && yarn post-compile",
"prepare": "husky install",
"test": "npx jest"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^27.4.2",
"chalk": "^5.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.2",
"glob": "^7.2.0",
"husky": ">=6",
"jest": "^27.4.2",
"lint-staged": ">=10",
"semantic-release": "^19.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.6.0"
},
"files": [
"dist/**",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json",
"yarn.lock"
],
"lint-staged": {
"src/*.{js,ts}": "eslint --cache"
},
"dependencies": {
"@fxts/core": "^0.5.0"
},
"peerDependencies": {
"typescript": "^4.1.2"
}
}