-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.66 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.66 KB
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
{
"name": "streambyter",
"version": "1.0.0",
"description": "Take a byte out of streams",
"main": "dist/index.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc mocha",
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint-fix": "eslint \"**/*.{ts,tsx}\" --fix",
"sandbox": "tsc && node dist/sandbox.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineersamuel/streambyter.git"
},
"keywords": [
"node",
"streams"
],
"author": "Samuel Mendenhall <Samuel.Mendenhall@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/engineersamuel/streambyter/issues"
},
"homepage": "https://github.com/engineersamuel/streambyter#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@types/chai": "^4.2.21",
"@types/faker": "^5.5.8",
"@types/mocha": "^9.0.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.6.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.24.0",
"faker": "^5.5.3",
"fast-glob": "^3.2.7",
"mocha": "^9.0.3",
"mock-fs": "^5.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}