-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.21 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
82
83
84
85
86
{
"name": "sequency",
"version": "0.20.0",
"description": "Functional sequences for processing iterable data in JavaScript",
"main": "lib/Sequence.js",
"umd:main": "lib-umd/sequency.js",
"typings": "lib/Sequence.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/Sequence.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 lib-umd && rimraf docs && rimraf coverage",
"compile": "tsc",
"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",
"lib-umd",
"LICENSE"
],
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@types/jest": "^27.4.1",
"gh-pages": "^3.2.3",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"size-limit": "^7.0.8",
"ts-loader": "^8.2.0",
"tslint": "^5.11.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/test/*.ts"
],
"testURL": "http://localhost/"
},
"size-limit": [
{
"path": "lib-umd/sequency.min.js",
"limit": "10 KB"
}
],
"keywords": [
"functional",
"sequence",
"processing",
"lazy",
"iterable",
"iterator",
"array",
"map",
"set"
]
}