UNPKG

2.65 kBJSONView Raw
1{
2 "name": "rambda",
3 "scripts": {
4 "new": "node scripts/add-new-method/add-new-method.js",
5 "test": "jest source -u --bail=false",
6 "cover:spec": "jest source --coverage --no-cache -w 1",
7 "cover": "yarn typings&&yarn cover:spec",
8 "out": "maided out",
9 "x": "maided rambdax",
10 "benchmark": "jest scripts/run-benchmarks/run-benchmarks.spec.js",
11 "benchmarkx": "jest scripts/run-benchmarks/run-complex-benchmarks.spec.js",
12 "toolbelt": "maided toolbelt",
13 "build": "maided build",
14 "lint": "maided lint",
15 "readme": "maided readme",
16 "docs": "docsify init ./docs",
17 "typings": "dtslint --localTs ./node_modules/typescript/lib --expectOnly ./source",
18 "fix": "mkdir $HOME/.dts/perf -p"
19 },
20 "typings": "./index.d.ts",
21 "main": "./dist/rambda.js",
22 "version": "6.3.0",
23 "dependencies": {},
24 "devDependencies": {
25 "@babel/core": "7.11.6",
26 "@babel/plugin-proposal-object-rest-spread": "7.11.0",
27 "@babel/preset-env": "7.11.5",
28 "@types/fs-extra": "9.0.1",
29 "@types/jest": "26.0.14",
30 "@types/ramda": "0.27.7",
31 "combinate": "1.1.1",
32 "cross-env": "7.0.2",
33 "dtslint": "4.0.4",
34 "fs-extra": "9.0.1",
35 "helpers-fn": "0.7.0",
36 "is-ci": "2.0.0",
37 "jest": "26.4.2",
38 "jest-extended": "0.11.5",
39 "lint-fn": "2.10.0",
40 "lodash": "4.17.19",
41 "maided": "0.1.3",
42 "rambdax": "4.1.0",
43 "ramda": "0.27.0",
44 "rollup": "2.28.2",
45 "rollup-plugin-babel": "4.4.0",
46 "rollup-plugin-cleanup": "3.2.1",
47 "rollup-plugin-commonjs": "10.1.0",
48 "rollup-plugin-json": "4.0.0",
49 "rollup-plugin-node-resolve": "5.2.0",
50 "rollup-plugin-replace": "2.2.0",
51 "rollup-plugin-sourcemaps": "0.6.2",
52 "string-fn": "2.12.2",
53 "typescript": "4.0.3"
54 },
55 "jest": {
56 "testEnvironment": "node",
57 "testRegex": ".*\\.spec\\.js$",
58 "setupFilesAfterEnv": [
59 "jest-extended"
60 ],
61 "collectCoverageFrom": [
62 "source/*.js",
63 "!_internals",
64 "!benchmarks"
65 ]
66 },
67 "files": [
68 "dist",
69 "src",
70 "_ts-toolbelt",
71 "index.d.ts"
72 ],
73 "repository": {
74 "type": "git",
75 "url": "git+https://github.com/selfrefactor/rambda.git"
76 },
77 "license": "MIT",
78 "author": "self_refactor",
79 "description": "Lightweight and faster alternative to Ramda",
80 "module": "./dist/rambda.esm.js",
81 "umd": "./dist/rambda.umd.js",
82 "sideEffects": false,
83 "commitLabels": [
84 "rambdax"
85 ],
86 "keywords": [
87 "ramda",
88 "fp",
89 "functional",
90 "utility",
91 "lodash"
92 ],
93 "bugs": {
94 "url": "https://github.com/selfrefactor/rambda/issues"
95 },
96 "homepage": "https://github.com/selfrefactor/rambda#readme"
97}