-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.17 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
{
"name": "rx-sandbox",
"version": "2.0.5",
"description": "Marble diagram DSL based test suite for RxJS 6/7",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lint-staged": {
"*.{ts,js}": [
"prettier --write --single-quote --print-width 120 --jsx-bracket-same-line true",
"tslint --fix",
"git add"
]
},
"scripts": {
"prepublishOnly": "npm-run-all build:clean build",
"test": "jest --coverage",
"lint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\" \"spec/**/*.ts\"",
"lint:staged": "lint-staged",
"build": "tsc -b --verbose src/tsconfig.json spec/tsconfig.json",
"build:clean": "shx rm -rf ./dist ./.tmp",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwonoj/rx-sandbox.git"
},
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable",
"Stream",
"ES6",
"ES2015"
],
"author": "OJ Kwon <kwon.ohjoong@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwonoj/rx-sandbox/issues"
},
"homepage": "https://github.com/kwonoj/rx-sandbox#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-angular": "^16.2.4",
"@types/jest": "^27.0.2",
"@types/node": "^20.4.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"enhanced-resolve": "^5.8.3",
"husky": "^3.1.0",
"jest": "^29.6.1",
"jest-spin-reporter": "^2.0.0",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"shx": "^0.3.3",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
},
"peerDependencies": {
"rxjs": "^7.8.1"
},
"dependencies": {
"expect": "^28.1.0",
"jest-matcher-utils": "^28.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "lint-staged",
"pre-push": "npm-run-all build test"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
]
}