-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "enum-plus",
"version": "2.0.2",
"description": "A drop-in replacement library for enum, tiny and powerful, like native enum but much more than that",
"keywords": [
"enum",
"typescript-library"
],
"homepage": "https://github.com/shijistar/enum-plus",
"bugs": {
"url": "https://github.com/shijistar/enum-plus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shijistar/enum-plus.git"
},
"license": "MIT",
"author": "[email protected]",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"es",
"CHANGELOG.md"
],
"scripts": {
"build": "run-p build:lib build:es",
"build:lib": "tsc -p tsconfig.lib.json",
"build:es": "tsc -p tsconfig.es.json",
"build:test": "tsc -p tsconfig.test.json",
"prepublishOnly": "npm run test && npm run build",
"test": "jest"
},
"prettier": "./.prettierrc.json",
"dependencies": {},
"devDependencies": {
"@types/jest": "29.1.1",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.1",
"jest": "29.1.2",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.3.0",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}