UNPKG

2.28 kBJSONView Raw
1{
2 "name": "sequency",
3 "version": "0.19.2",
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 "build-prod": "yarn build && yarn docs-publish",
21 "prepublishOnly": "yarn build-prod"
22 },
23 "author": "Benjamin Winterberg",
24 "homepage": "http://winterbe.com",
25 "license": "MIT",
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/winterbe/sequency.git"
29 },
30 "bugs": {
31 "url": "https://github.com/winterbe/sequency/issues"
32 },
33 "files": [
34 "lib",
35 "lib-umd",
36 "LICENSE"
37 ],
38 "engines": {
39 "node": ">=6.0.0"
40 },
41 "devDependencies": {
42 "@types/jest": "^23.3.1",
43 "awesome-typescript-loader": "^5.2.0",
44 "gh-pages": "^1.2.0",
45 "jest": "^23.4.2",
46 "rimraf": "^2.6.2",
47 "size-limit": "^0.19.0",
48 "tslint": "^5.11.0",
49 "typedoc": "^0.11.1",
50 "typescript": "^2.9.2",
51 "webpack": "^4.16.3",
52 "webpack-cli": "^3.1.0"
53 },
54 "dependencies": {},
55 "jest": {
56 "moduleFileExtensions": [
57 "ts",
58 "js"
59 ],
60 "transform": {
61 "^.+\\.ts$": "<rootDir>/preprocessor.js"
62 },
63 "testMatch": [
64 "**/test/*.ts"
65 ],
66 "testURL": "http://localhost/"
67 },
68 "size-limit": [
69 {
70 "path": "lib-umd/sequency.min.js",
71 "limit": "9 KB"
72 }
73 ],
74 "keywords": [
75 "functional",
76 "sequence",
77 "processing",
78 "lazy",
79 "iterable",
80 "iterator",
81 "array",
82 "map",
83 "set"
84 ]
85}