forked from winterbe/sequency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.69 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@wortise/sequency",
"version": "0.20.0",
"description": "Functional sequences for processing iterable data in JavaScript",
"main": "./lib/cjs/sequency.js",
"module": "./lib/esm/sequency.js",
"umd:main": "./lib/umd/sequency.js",
"types": "./lib/types/sequency.d.ts",
"exports": {
".": {
"default": "./lib/cjs/sequency.js",
"require": "./lib/cjs/sequency.js",
"import": "./lib/esm/sequency.js",
"types": "./lib/types/sequency.d.ts"
}
},
"scripts": {
"test": "jest",
"watch": "jest --watch --notify",
"coverage": "rimraf coverage && jest --coverage",
"travis": "yarn lint && yarn test",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"docs": "rimraf docs && typedoc --name Sequency --readme APIDOC.md -out docs --hideGenerator src/sequency.ts",
"docs-publish": "yarn docs && touch docs/.nojekyll && gh-pages -d docs -t",
"bundle": "webpack --mode production && size-limit",
"bundle-browsertest": "open ./test/browsertest-lib.html",
"clean": "rimraf lib && rimraf docs && rimraf coverage",
"compile": "node_modules/.bin/tsc -b tsconfig.json tsconfig.esm.json tsconfig.cjs.json",
"build": "yarn clean && yarn lint && yarn compile && yarn test && yarn bundle",
"prepublishOnly": "yarn build"
},
"author": "winterbe",
"homepage": "https://winterbe.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/winterbe/sequency.git"
},
"bugs": {
"url": "https://github.com/winterbe/sequency/issues"
},
"files": [
"lib",
"LICENSE"
],
"engines": {
"node": ">=6.0.0"
},
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.2",
"@types/jest": "^29.5.12",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"size-limit": "^11.1.2",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "./tsconfig.esm.json",
"useESM": true
}
]
},
"testMatch": [
"**/test/**/*.ts"
],
"testEnvironmentOptions": {
"url": "http://localhost/"
}
},
"size-limit": [
{
"path": "lib/umd/sequency.min.js",
"limit": "10 KB"
}
],
"keywords": [
"functional",
"sequence",
"processing",
"lazy",
"iterable",
"iterator",
"array",
"map",
"set"
]
}