-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
97 lines (97 loc) · 2.13 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
88
89
90
91
92
93
94
95
96
97
{
"name": "iterare",
"version": "1.0.0",
"description": "Array methods for ES6 Iterators",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=6"
},
"scripts": {
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"prettier": "prettier --write --list-different '**/*.{ts,json,js,md,yml}'",
"test": "nyc mocha",
"build": "tsc",
"watch": "tsc -w",
"typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --ignoreCompilerErrors --mode file --excludeExternals src",
"semantic-release": "semantic-release"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"reporter": [
"text",
"json"
]
},
"mocha": {
"spec": "src/**/*.test.ts",
"require": "ts-node/register"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"iterator",
"iteration",
"functional",
"es6",
"collection",
"array",
"map",
"set",
"filter",
"reduce",
"flatten",
"concat",
"every",
"some"
],
"author": "Felix Becker <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/iterare"
},
"bugs": {
"url": "https://github.com/felixfbecker/iterare/issues"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@reactivex/ix-es2015-cjs": "^2.5.3",
"@types/benchmark": "^1.0.31",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/node": "^7.10.6",
"benchmark": "^2.1.4",
"husky": "^2.4.0",
"ix": "^2.5.3",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.1",
"rxjs": "^6.5.2",
"semantic-release": "^15.13.12",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "~3.5.1"
}
}