-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "rxjs-ratelimiter",
"version": "1.0.1",
"description": "rxjs 6 rate limiter",
"main": "lib/index.js",
"typings": "lib/index",
"repository": {
"type": "git",
"url": "git://github.com/ohjames/rxjs-ratelimiter.git"
},
"keywords": [
"rxjs",
"rate",
"limit",
"limiter",
"ratelimit",
"ratelimiter"
],
"scripts": {
"build": "tsc -p src",
"build:watch": "npm run build -- -w",
"fix": "prettier --write '**/*.{tsx,ts}'",
"lint": "eslint 'src/*.ts'",
"validate-prettiness": "prettier -c 'src/*.ts'",
"test": "npm run build && npm run mocha",
"mocha": "mocha lib/*.spec.js",
"mocha:watch": "npm run mocha -- -w",
"validate": "yarn test && yarn lint && yarn validate-prettiness",
"watch": "concurrently 'npm run build:watch' 'npm run mocha:watch'",
"prepublishOnly": "npm run build"
},
"author": "James Pike <github@chilon.net>",
"license": "ISC",
"peerDependencies": {
"rxjs": "^6"
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/mocha": "5.2.7",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"chai": "4.2.0",
"concurrently": "4.1.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.3.0",
"husky": "3.1.0",
"mocha": "6.2.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"rxjs": "6.6.2",
"typescript": "3.6.3"
}
}