-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "@chocolatey/box",
"version": "1.2.0",
"description": "Put a value in a box",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/chocolateboy/box",
"author": "chocolateboy",
"license": "MIT",
"scripts": {
"build": "rollup -c --exports named",
"build:doc": "toc-md README.md",
"build:release": "run-s typecheck build build:doc",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-s clean build:release test:run",
"rebuild": "run-s clean build",
"repl": "node -r ./resources/repl.js",
"test": "run-s build test:run",
"test:run": "ava --verbose \"./test/**/*.js\"",
"typecheck": "tsc --noEmit --noImplicitAny --noUnusedLocals --noUnusedParameters --strict"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js"
},
"./": "./dist/",
"./package.json": "./package.json"
},
"files": [
"dist/*.{js,d.ts}"
],
"browserslist": "maintained node versions",
"devDependencies": {
"@wessberg/rollup-plugin-ts": "^1.3.14",
"ava": "^3.15.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.55.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.3",
"toc-md-alt": "^0.4.2",
"ts-transformer-minify-privates": "^0.3.0",
"typescript": "~4.2.4"
},
"keywords": [
"bind",
"box",
"chain",
"compose",
"composition",
"container",
"flow",
"functional",
"functor",
"iife",
"pipe",
"pipeline",
"point-free",
"pointfree",
"tacit"
]
}