-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "big-m",
"version": "7.1.0",
"description": "Utilities for building and transforming maps using iterables and streams.",
"keywords": [
"map",
"hashmap",
"iterable",
"stream",
"utility"
],
"homepage": "https://mattiasmartens.github.io/big-m/",
"bugs": {
"url": "https://github.com/MattiasMartens/big-m/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/MattiasMartens/big-m"
},
"main": "dist/exports/index.js",
"author": "Mattias Martens <[email protected]>",
"license": "MIT",
"nyc": {
"extension": [
".ts"
],
"include": [
"exports/*.ts"
],
"reporter": [
"html"
],
"all": true
},
"scripts": {
"test": "nyc mocha -r ts-node/register -r tsconfig-paths/register test/**/*.ts && open coverage/index.html",
"debug": "mocha -r ts-node/register -r tsconfig-paths/register test/**/*.ts --inspect-brk",
"benchmark": "node -r ts-node/register -r tsconfig-paths/register benchmarks",
"compile": "rm -rf dist; cd exports; tsc; cd ..",
"docs": "rm -rf docs; ./node_modules/.bin/jsdoc dist/exports/* --readme README.md -c .jsdoc.config.json; mv out docs; open docs/index.html",
"republish": "yarn compile; yarn docs; git add -A; git commit -m \"publish new version\"; npm publish;"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.3",
"benchmark": "^2.1.4",
"fp-ts": "^2.12.1",
"jsdoc": "^3.6.6",
"mocha": "^8.4.0",
"nyc": "^14.1.1",
"should": "^13.2.3",
"ts-node": "^8.3.0",
"ts-stream": "^3.0.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.6.2"
},
"dependencies": {}
}