-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1005 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": "bitfun",
"version": "1.2.1",
"description": "Functions for manipulating bitmasks as numbers",
"source": "./index.ts",
"main": "./dist/index.js",
"module": "./dist/module.js",
"browser": "./dist/browser.js",
"types": "./dist/types.d.ts",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "parcel build",
"lint": "prettier . -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vladislao/bitfun.git"
},
"keywords": [
"bitmask"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vladislao/bitfun/issues"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"jest": "^29.7.0",
"parcel": "^2.10.3",
"prettier": "3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"homepage": "https://github.com/Vladislao/bitfun#readme"
}