-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.32 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
{
"name": "@chocolatey/conjoin",
"version": "3.0.1",
"description": "A fast and flexible joiner for iterables and arrays with a tiny footprint",
"author": "chocolateboy",
"repository": "https://github.com/chocolateboy/conjoin",
"license": "Artistic-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"types": "index.d.ts",
"scripts": {
"build": "bili --map --format cjs -d dist src/index.ts",
"build:default": "cross-env NODE_ENV=production bili --no-map --format cjs,esm -d dist src/index.ts",
"build:doc": "toc-md --max-depth 3 README.md",
"build:min": "cross-env NODE_ENV=production bili --no-map --format esm-min -d dist src/index.ts",
"build:release": "run-s typecheck build:default build:umd build:doc",
"build:umd": "cross-env NODE_ENV=production bili --module-name Conjoin --no-map --format umd-min -d dist src/index.ts",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-s clean typecheck build:release test:types test:run",
"rebuild": "run-s clean build",
"repl": "node -r ./resources/repl.js",
"test": "run-s typecheck build test:types test:run",
"test:run": "ava --verbose ./test.js",
"test:types": "tsd",
"typecheck": "tsc --noEmit --noImplicitAny --noUnusedLocals --noUnusedParameters --strict"
},
"files": [
"dist/index.esm.js",
"dist/index.js",
"dist/index.umd.min.js",
"index.d.ts"
],
"browserslist": "maintained node versions",
"devDependencies": {
"@babel/core": "^7.12.9",
"ava": "^3.13.0",
"babel-plugin-source-map-support": "^2.1.3",
"bili": "^5.0.5",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"rollup-plugin-typescript2": "^0.29.0",
"shx": "^0.3.3",
"toc-md-alt": "^0.4.1",
"tsd": "^0.13.1",
"typescript": "^4.1.2"
},
"keywords": [
"array",
"arraylike",
"array-join",
"array-like",
"conjoin",
"curried",
"curry",
"iterable",
"join",
"joiner",
"list",
"oxford-comma",
"sentence",
"separator",
"separators",
"serial-comma"
]
}