UNPKG

3.27 kBJSONView Raw
1{
2 "author": "Scott Sauyet <scott@sauyet.com> (scott.sauyet.com)",
3 "contributors": [
4 {
5 "name": "Michael Hurley",
6 "email": "mh@buzzdecafe.com",
7 "web": "http://buzzdecafe.com"
8 },
9 {
10 "name": "Scott Sauyet",
11 "email": "scott@sauyet.com",
12 "web": "http://fr.umio.us"
13 },
14 {
15 "name": "David Chambers",
16 "email": "dc@davidchambers.me",
17 "web": "http://davidchambers.me"
18 },
19 {
20 "name": "Graeme Yeates",
21 "email": "yeatesgraeme@gmail.com",
22 "web": "https://github.com/megawac"
23 }
24 ],
25 "name": "ramda",
26 "description": "A practical functional library for JavaScript programmers.",
27 "keywords": [
28 "ramda",
29 "functional",
30 "utils",
31 "utilities",
32 "toolkit",
33 "fp",
34 "tacit",
35 "point-free",
36 "curried",
37 "pure",
38 "fantasy-land"
39 ],
40 "sideEffects": false,
41 "version": "0.27.0",
42 "homepage": "https://ramdajs.com/",
43 "license": "MIT",
44 "repository": {
45 "type": "git",
46 "url": "git://github.com/ramda/ramda.git"
47 },
48 "module": "es/index.js",
49 "main": "src/index",
50 "unpkg": "dist/ramda.min.js",
51 "jsdelivr": "dist/ramda.min.js",
52 "files": [
53 "es",
54 "src",
55 "dist"
56 ],
57 "scripts": {
58 "prebench": "npm run --silent build:cjs",
59 "bench": "node scripts/benchRunner",
60 "bookmarklet": "node scripts/bookmarklet",
61 "build:es": "cross-env BABEL_ENV=es babel source --out-dir es",
62 "build:cjs": "cross-env BABEL_ENV=cjs babel source --out-dir src",
63 "build:mjs": "cross-env BABEL_ENV=es babel source/index.js --out-file src/index.mjs",
64 "build:umd": "cross-env NODE_ENV=development rollup -c -o dist/ramda.js",
65 "build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/ramda.min.js",
66 "build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min && npm run build:mjs",
67 "partial-build": "node ./scripts/partialBuild",
68 "clean": "rimraf es/* src/* dist/* coverage/*",
69 "prepare": "npm run clean && npm run build",
70 "coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
71 "lint": "eslint scripts/bookmarklet scripts/*.js source/*.js source/internal/*.js test/*.js test/**/*.js lib/sauce/*.js lib/bench/*.js",
72 "browser_test": "testem ci",
73 "test": "cross-env BABEL_ENV=cjs mocha --require @babel/register --reporter spec"
74 },
75 "dependencies": {},
76 "devDependencies": {
77 "@babel/cli": "^7.4.4",
78 "@babel/core": "^7.4.5",
79 "@babel/types": "^7.4.4",
80 "@babel/register": "^7.4.4",
81 "babel-plugin-annotate-pure-calls": "^0.4.0",
82 "babel-plugin-import-export-rename": "^1.0.1",
83 "babelify": "^10.0.0",
84 "benchmark": "~1.0.0",
85 "browserify": "https://api.github.com/repos/browserify/browserify/tarball/9ff7c55cc67a7ddbc64f8e7270bcd75fcc72ce2f",
86 "cli-table": "0.3.x",
87 "cross-env": "^5.2.0",
88 "dox": "latest",
89 "envvar": "^2.0.0",
90 "eslint": "^5.16.0",
91 "handlebars": ">=4.1.2",
92 "istanbul": "^0.4.x",
93 "js-yaml": "^3.13.1",
94 "jsverify": "^0.8.4",
95 "mocha": "^6.1.4",
96 "ramda": "0.17.x",
97 "rimraf": "^2.6.3",
98 "rollup": "^0.68.2",
99 "rollup-plugin-uglify": "^6.0.2",
100 "sanctuary": "0.7.x",
101 "sinon": "^7.3.2",
102 "testem": "^2.16.0",
103 "xyz": "^3.0.0"
104 }
105}