-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "@nota/rxjs-operators",
"version": "7.0.0",
"description": "A collection of operators for rxjs used by @nota",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all lint build:tsc",
"build:tsc": "tsc -p ./tsconfig.json",
"clean": "npm-run-all clean:docs clean:temp clean:dist",
"clean:dist": "rimraf dist",
"clean:docs": "rimraf docs",
"clean:temp": "rimraf .tmp",
"format": "prettier --write --config .prettierrc.json 'src/**/*.ts'",
"format:check": "prettier-check --config .prettierrc.json 'src/**/*.ts'",
"lint": "npm-run-all tslint format:check",
"test": "TS_NODE_FILES=true mocha -r ts-node/register 'src/**/*.spec.ts'",
"test:watch": "TS_NODE_FILES=true mocha -r ts-node/register -w --watch-files 'src/**/*.ts' 'src/**/*.spec.ts'",
"prepare": "npm run build",
"tslint": "tslint -p ./tsconfig.json -c ./tslint.json"
},
"author": {
"name": "nota",
"url": "http://nota.dk"
},
"contributors": [
{
"name": "Daniel Dam Freiling",
"email": "[email protected]"
},
{
"name": "Morten Anton Bach Sjøgren",
"url": "http://mabs.dk",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/m-abs/nota-rxjs-operators.git"
},
"homepage": "https://github.com/m-abs/nota-rxjs-operators",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prettier-check": "^2.0.0",
"rimraf": "^4.4.1",
"rxjs": "^7.8.0",
"rxjs-marbles": "^7.0.1",
"rxjs-tslint": "^0.1.8",
"sinon": "^15.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tslint": "^6.0.0",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^5.0.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
}