UNPKG

2.23 kBJSONView Raw
1{
2 "name": "sequency",
3 "version": "0.20.0",
4 "description": "Functional sequences for processing iterable data in JavaScript",
5 "main": "lib/Sequence.js",
6 "umd:main": "lib-umd/sequency.js",
7 "typings": "lib/Sequence.d.ts",
8 "scripts": {
9 "test": "jest",
10 "watch": "jest --watch --notify",
11 "coverage": "rimraf coverage && jest --coverage",
12 "travis": "yarn lint && yarn test",
13 "lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
14 "docs": "rimraf docs && typedoc --name Sequency --readme APIDOC.md --module commonjs --out docs --excludeNotExported --target es6 --hideGenerator --gaID UA-48569937-1 src",
15 "docs-publish": "yarn docs && touch docs/.nojekyll && gh-pages -d docs -t",
16 "bundle": "webpack --mode production && size-limit",
17 "clean": "rimraf lib && rimraf lib-umd && rimraf docs && rimraf coverage",
18 "compile": "tsc",
19 "build": "yarn clean && yarn lint && yarn compile && yarn test && yarn bundle",
20 "prepublishOnly": "yarn build"
21 },
22 "author": "Benjamin Winterberg",
23 "homepage": "https://winterbe.com",
24 "license": "MIT",
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/winterbe/sequency.git"
28 },
29 "bugs": {
30 "url": "https://github.com/winterbe/sequency/issues"
31 },
32 "files": [
33 "lib",
34 "lib-umd",
35 "LICENSE"
36 ],
37 "engines": {
38 "node": ">=6.0.0"
39 },
40 "devDependencies": {
41 "@types/jest": "^23.3.1",
42 "gh-pages": "^1.2.0",
43 "jest": "^23.4.2",
44 "rimraf": "^2.6.2",
45 "size-limit": "^0.19.0",
46 "ts-loader": "^8.2.0",
47 "tslint": "^5.11.0",
48 "typedoc": "^0.11.1",
49 "typescript": "^4.6.2",
50 "webpack": "^4.46.0",
51 "webpack-cli": "^3.3.12",
52 "uglifyjs-webpack-plugin": "^2.2.0"
53 },
54 "jest": {
55 "moduleFileExtensions": [
56 "ts",
57 "js"
58 ],
59 "transform": {
60 "^.+\\.ts$": "<rootDir>/preprocessor.js"
61 },
62 "testMatch": [
63 "**/test/*.ts"
64 ],
65 "testURL": "http://localhost/"
66 },
67 "size-limit": [
68 {
69 "path": "lib-umd/sequency.min.js",
70 "limit": "9 KB"
71 }
72 ],
73 "keywords": [
74 "functional",
75 "sequence",
76 "processing",
77 "lazy",
78 "iterable",
79 "iterator",
80 "array",
81 "map",
82 "set"
83 ]
84}