-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 Bytes
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
{
"name": "@kejistan/enum",
"version": "0.0.2",
"description": "Enum utilities for typescript, inspired by flow enums",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p build.tsconfig.json"
},
"author": "Sean Nicolay",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kejistan/enum.git"
},
"keywords": [
"enum"
],
"bugs": {
"url": "https://github.com/kejistan/enum/issues"
},
"homepage": "https://github.com/kejistan/enum#readme"
}