forked from FlorianWendelborn/bitwise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"author": {
"email": "[email protected]",
"name": "Florian Wendelborn",
"url": "https://hello.dodekeract.com/npm/bitwise"
},
"bugs": {
"url": "https://github.com/FlorianWendelborn/bitwise/issues"
},
"contributors": [
{
"name": "Hubertus Weber",
"url": "https://github.com/HubertusWeber"
}
],
"description": "Manipulates bits, nibbles, bytes, and buffers.",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"ts-jest": "^26.5.1",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"homepage": "https://github.com/FlorianWendelborn/bitwise#readme",
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"roots": [
"<rootDir>/source"
],
"testRegex": "\\.test\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"keywords": [
"and",
"binary",
"bit",
"bits",
"bitwise",
"buffer",
"buffers",
"change",
"flip",
"manipulate",
"nand",
"nibble",
"nibbles",
"nor",
"not",
"or",
"read",
"toggle",
"write",
"xnor",
"xor"
],
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"name": "bitwise",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlorianWendelborn/bitwise.git"
},
"scripts": {
"build": "rm -rf build && tsc && tsc -p ./tsconfig.treeshake.json && yarn run build:copy",
"build:copy": "cp package.json build && cp readme.md build && cp license.md build",
"clean": "read -p \"Are you sure you want to discard all uncommitted changes? (y/n)\" CONTINUE; if [ \"$CONTINUE\" = \"y\" ]; then git clean -dxf; else exit 1; fi && yarn install",
"coverage": "jest --coverage",
"custom-publish": "yarn run clean && yarn run build && yarn run test && echo \"cd build && npm publish\"",
"postpublish": "git tag $(node -p \"require('./package.json').version\") && git push --tags",
"test": "jest",
"watch": "jest --watch"
},
"sideEffects": false,
"types": "index.d.ts",
"version": "2.1.0"
}