forked from ramda/ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.25 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"author": "Scott Sauyet <scott@sauyet.com> (scott.sauyet.com)",
"contributors": [
{
"name": "Michael Hurley",
"email": "mh@buzzdecafe.com",
"web": "http://buzzdecafe.com"
},
{
"name": "Scott Sauyet",
"email": "scott@sauyet.com",
"web": "http://fr.umio.us"
},
{
"name": "David Chambers",
"email": "dc@davidchambers.me",
"web": "http://davidchambers.me"
},
{
"name": "Graeme Yeates",
"email": "yeatesgraeme@gmail.com",
"web": "https://github.com/megawac"
}
],
"name": "ramda",
"description": "A practical functional library for JavaScript programmers.",
"keywords": [
"ramda",
"functional",
"utils",
"utilities",
"toolkit",
"fp",
"tacit",
"point-free",
"curried",
"pure",
"fantasy-land"
],
"sideEffects": false,
"version": "0.26.1",
"homepage": "https://ramdajs.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ramda/ramda.git"
},
"module": "es/index.js",
"main": "src/index",
"unpkg": "dist/ramda.min.js",
"jsdelivr": "dist/ramda.min.js",
"files": [
"es",
"src",
"dist"
],
"scripts": {
"prebench": "npm run --silent build:cjs",
"bench": "node scripts/benchRunner",
"bookmarklet": "node scripts/bookmarklet",
"build:es": "cross-env BABEL_ENV=es babel source --out-dir es",
"build:cjs": "cross-env BABEL_ENV=cjs babel source --out-dir src",
"build:mjs": "cross-env BABEL_ENV=es babel source/index.js --out-file src/index.mjs",
"build:umd": "cross-env NODE_ENV=development rollup -c -o dist/ramda.js",
"build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/ramda.min.js",
"build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min && npm run build:mjs",
"partial-build": "node ./scripts/partialBuild",
"clean": "rimraf es/* src/* dist/* coverage/*",
"prepare": "npm run clean && npm run build",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"lint": "eslint scripts/bookmarklet scripts/*.js source/*.js source/internal/*.js test/*.js test/**/*.js lib/sauce/*.js lib/bench/*.js",
"browser_test": "testem ci",
"test": "cross-env BABEL_ENV=cjs mocha --require @babel/register --reporter spec"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.4.4",
"@babel/types": "^7.4.4",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-import-export-rename": "^1.0.1",
"babelify": "^10.0.0",
"benchmark": "~1.0.0",
"browserify": "https://api.github.com/repos/browserify/browserify/tarball/9ff7c55cc67a7ddbc64f8e7270bcd75fcc72ce2f",
"cli-table": "0.3.x",
"cross-env": "^5.2.0",
"dox": "latest",
"envvar": "^2.0.0",
"eslint": "^5.16.0",
"handlebars": ">=4.1.2",
"istanbul": "^0.4.x",
"js-yaml": "^3.13.1",
"jsverify": "^0.8.4",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.2",
"sanctuary": "0.7.x",
"sinon": "^7.3.2",
"testem": "^2.16.0",
"xyz": "^3.0.0"
}
}