-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "bitmask-decorator",
"version": "1.0.8",
"description": "TypeScript decorators to facilitate storing of boolean features as bitwise.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup src",
"dev": "tsup src --watch",
"prepublish": "npm run build"
},
"keywords": [
"bitwise",
"typescript",
"decorator"
],
"author": "didof",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@vitest/coverage-c8": "^0.28.4",
"tsup": "^6.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/didof/bitmask-decorator.git"
},
"bugs": {
"url": "https://github.com/didof/bitmask-decorator/issues"
},
"homepage": "https://github.com/didof/bitmask-decorator#readme"
}