generated from iadvize/hello-world-javascript-library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "@iadvize-oss/opaque-union",
"version": "1.0.1",
"description": "Functional opaque union api for Typescript and Javascript",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"esm"
],
"scripts": {
"build": "rm -rf dist esm && rollup -c",
"test:js": "jest --coverage",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.json,.d.ts --cache",
"docs": "typedoc"
},
"homepage": "https://github.com/iadvize/opaque-union-library#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iadvize/opaque-union-library.git"
},
"keywords": [
"iAdvize"
],
"bugs": {
"url": "https://github.com/iadvize/opaque-union-library/issues"
},
"author": "iAdvize developers",
"license": "MIT",
"private": false,
"devDependencies": {
"@iadvize-oss/eslint-config": "^2.2.0",
"@iadvize-oss/eslint-config-jest": "^1.2.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@types/jest": "^26.0.15",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"rollup": "^2.33.3",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.4.4",
"tsd": "^0.17.0",
"tslib": "^2.0.3",
"typedoc": "^0.21.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@iadvize-oss/foldable-helpers": "^2.2.0",
"monocle-ts": "^2.3.3"
}
}