UNPKG

2.19 kBJSONView Raw
1{
2 "name": "iterare",
3 "version": "1.2.1",
4 "description": "Array methods for ES6 Iterators",
5 "main": "lib/index.js",
6 "typings": "lib/index.d.ts",
7 "engines": {
8 "node": ">=6"
9 },
10 "scripts": {
11 "tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
12 "prettier": "prettier --write --list-different '**/*.{ts,json,js,md,yml}'",
13 "test": "nyc mocha",
14 "build": "tsc",
15 "watch": "tsc -w",
16 "typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --ignoreCompilerErrors --mode file --excludeExternals src",
17 "semantic-release": "semantic-release"
18 },
19 "nyc": {
20 "all": true,
21 "extension": [
22 ".ts"
23 ],
24 "include": [
25 "src/**/*.ts"
26 ],
27 "exclude": [
28 "src/**/*.test.ts"
29 ],
30 "reporter": [
31 "text",
32 "json"
33 ]
34 },
35 "mocha": {
36 "spec": "src/**/*.test.ts",
37 "require": "ts-node/register"
38 },
39 "husky": {
40 "hooks": {
41 "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
42 }
43 },
44 "commitlint": {
45 "extends": [
46 "@commitlint/config-conventional"
47 ]
48 },
49 "keywords": [
50 "iterator",
51 "iteration",
52 "functional",
53 "es6",
54 "collection",
55 "array",
56 "map",
57 "set",
58 "filter",
59 "reduce",
60 "flatten",
61 "concat",
62 "every",
63 "some"
64 ],
65 "author": "Felix Becker <felix.b@outlook.com>",
66 "repository": {
67 "type": "git",
68 "url": "https://github.com/felixfbecker/iterare"
69 },
70 "bugs": {
71 "url": "https://github.com/felixfbecker/iterare/issues"
72 },
73 "license": "ISC",
74 "devDependencies": {
75 "@commitlint/cli": "^8.0.0",
76 "@commitlint/config-conventional": "^8.0.0",
77 "@reactivex/ix-es2015-cjs": "^2.5.3",
78 "@types/benchmark": "^1.0.31",
79 "@types/lodash": "^4.14.134",
80 "@types/mocha": "^5.2.7",
81 "@types/node": "^7.10.6",
82 "benchmark": "^2.1.4",
83 "husky": "^2.4.0",
84 "ix": "^2.5.3",
85 "lodash": "^4.17.11",
86 "mocha": "^6.1.4",
87 "nyc": "^14.1.1",
88 "prettier": "^1.18.1",
89 "rxjs": "^6.5.2",
90 "semantic-release": "^15.13.12",
91 "ts-node": "^8.2.0",
92 "tslint": "^5.17.0",
93 "tslint-config-prettier": "^1.18.0",
94 "typedoc": "^0.14.2",
95 "typescript": "~3.5.1"
96 }
97}