-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@sciactive/back-pressure-transform",
"version": "0.0.2",
"description": "A back pressure aware Transform stream.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"format": "npx prettier --write .",
"lint": "npx prettier --check .",
"clean": "test -d dist && rm -r dist || true",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.es.json",
"prepare": "husky install && npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/back-pressure-transform.git"
},
"keywords": [
"back pressure",
"backpressure",
"transform",
"transform stream",
"streams"
],
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/back-pressure-transform/issues"
},
"homepage": "https://github.com/sciactive/back-pressure-transform#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.7",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}