-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.8 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
{
"author": {
"email": "yury@strozhevsky.com",
"name": "Yury Strozhevsky"
},
"description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript",
"contributors": [
{
"email": "rmh@unmitigatedrisk.com",
"name": "Ryan Hurst"
}
],
"files": [
"build",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/PeculiarVentures/ByteStream.js.git"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"coveralls": "^3.1.1",
"eslint": "^8.15.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha",
"clear": "rimraf build",
"build": "npm run build:cjs && npm run build:mjs && npm run build:types",
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
"prebuild:types": "rimraf build/types",
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
"rebuild": "npm run clear && npm run build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"ES6",
"ES2015",
"stream",
"bit",
"byte",
"access"
],
"name": "bytestreamjs",
"version": "2.0.1",
"module": "./build/mjs/index.js",
"main": "./build/cjs/index.js",
"types": "./build/types/index.d.ts",
"license": "BSD-3-Clause"
}