-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.71 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
74
75
76
77
78
79
80
81
{
"name": "@chocolatey/enumerator",
"version": "1.1.1",
"description": "Generate a series of tuples in lexicographical order",
"author": "chocolateboy",
"repository": "https://github.com/chocolateboy/enumerator",
"license": "MIT",
"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:doc": "toc-md README.md",
"build:dts": "tsc --declaration --noEmit && shx mv ./dist/index.d.ts .",
"build:js": "cross-env NODE_ENV=production bili --no-map --module-name Enumerator --format cjs,esm,umd,umd-min -d dist src/index.ts",
"build:min": "cross-env NODE_ENV=production bili --no-map --format esm-min -d dist src/index.ts",
"build:release": "run-p build:js build:doc",
"clean": "shx rm -rf dist",
"coverage": "run-s build nyc",
"nyc": "nyc ava --verbose \"./test/**/*.js\"",
"prepublishOnly": "run-s clean typecheck build:release build:dts test:types test:run",
"rebuild": "run-s clean build",
"repl": "run-s build repl:run",
"repl:run": "node -r ./resources/repl.js",
"test": "run-s build test:run",
"test:run": "ava --verbose \"./test/**/*.js\"",
"test:types": "tsd",
"typecheck": "tsc --noEmit --noUnusedLocals --noUnusedParameters",
"watch": "cross-env NODE_ENV=production bili --watch --no-map --format cjs -d dist src/index.ts"
},
"files": [
"dist/index.esm.js",
"dist/index.js",
"dist/index.umd.js",
"dist/index.umd.min.js",
"index.d.ts"
],
"browserslist": "maintained node versions",
"devDependencies": {
"@babel/core": "^7.14.3",
"ava": "^3.15.0",
"babel-plugin-source-map-support": "^2.1.3",
"bili": "^5.0.5",
"cross-env": "^7.0.3",
"fromentries": "^1.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"shx": "^0.3.3",
"toc-md-alt": "^0.4.2",
"tsd": "^0.17.0",
"typescript": "^4.3.2"
},
"keywords": [
"alphabet",
"alphabets",
"cartesian-product",
"combination",
"combinations",
"cross-product",
"digit",
"digits",
"enumerable",
"enumerate",
"enumerator",
"generator",
"iterable",
"iterator",
"n-tuple",
"n-tuples",
"odometer",
"permutation",
"permutations",
"sequence",
"sequencer",
"token",
"tokens"
]
}