-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "mask-flags",
"version": "3.1.0",
"description": "JavaScript flags implemented using bitmask for simple and efficient storage",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "jest",
"watch": "jest --watch",
"cov": "jest --coverage",
"ci": "jest --coverage",
"compile": "tsup src/index.ts --dts --format esm,cjs",
"prepublishOnly": "rm -rf ./dist && npm run compile"
},
"author": "paradite",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"tsup": "^6.2.2",
"typescript": "^4.5.4"
},
"jest": {
"coverageReporters": [
"clover",
"json",
"lcov",
"text",
"text-summary"
],
"transformIgnorePatterns": [
"node_modules/mask-flags"
]
},
"dependencies": {
"numeric-array-integer": "^3.1.0"
}
}