-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "js-bit-manipulation",
"version": "1.0.1",
"description": "A collection of bit manipulation helpers written TypeScript.",
"type": "module",
"main": "./dist/mz-bitwise.min.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/mz-bitwise.esm.js",
"require": "./dist/mz-bitwise.node.cjs",
"default": "./dist/mz-bitwise.esm.js"
},
"scripts": {
"build:all": "npm run build:es6 & npm run build:node & npm run build:esm",
"watch:all": "npm run watch:es6 & npm run watch:node & npm run watch:esm",
"build:es6": "node run/es6.js",
"watch:es6": "node run/es6.js -- watch",
"build:node": "node run/node.js",
"watch:node": "node run/node.js -- watch",
"build:esm": "node run/esm.js",
"watch:esm": "node run/esm.js -- watch",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint ./src/**",
"typescript-declarations": "tsc --emitDeclarationOnly"
},
"keywords": [],
"author": "Miriam Zusin <miriam.zusin@gmail.com>",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/mzusin/js-bit-manipulation.git"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"esbuild": "^0.16.3",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
}
}