This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "evangelist",
"description": "Library of helpers that are useful for functional programming",
"keywords": [
"override",
"overriding",
"wrap",
"wrapping",
"function",
"method",
"compose",
"curry",
"curryRight",
"decorate",
"dispatcher",
"emitter",
"iterate"
],
"version": "0.13.5",
"homepage": "https://github.com/eserozvataf/evangelist#readme",
"author": "Eser Ozvataf <eser@ozvataf.com>",
"contributors": [
{
"name": "Eser Ozvataf",
"email": "eser@ozvataf.com",
"url": "http://eser.ozvataf.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/eserozvataf/evangelist.git"
},
"bugs": {
"url": "https://github.com/eserozvataf/evangelist/issues"
},
"license": "Apache-2.0",
"main": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"cleanup": "rm -rf yarn.lock node_modules/ dist/",
"compile:npm": "tsc --build && cp package.json LICENSE *.md ./dist/npm/",
"compile:bundles": "rollup -c && cp LICENSE *.md ./dist/",
"compile": "yarn run compile:npm && yarn run compile:bundles",
"publish:npm": "yarn publish ./dist/npm/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mjs ./src/",
"test": "jest",
"coverage": "jest --coverage && codecov"
},
"dependencies": {
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@typescript-eslint/parser": "^2.0.0",
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-eser": "^2.1.2",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0",
"rollup": "^1.19.4",
"rollup-plugin-dts": "^1.1.6",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}