forked from ramda/ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.72 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
{
"author": "Scott Sauyet <[email protected]> (scott.sauyet.com)",
"contributors": [
{
"name": "Michael Hurley",
"email": "[email protected]",
"web": "http://buzzdecafe.com"
},
{
"name": "Scott Sauyet",
"email": "[email protected]",
"web": "http://fr.umio.us"
},
{
"name": "David Chambers",
"email": "[email protected]",
"web": "http://davidchambers.me"
},
{
"name": "Graeme Yeates",
"email": "[email protected]",
"web": "https://github.com/megawac"
}
],
"name": "ramda",
"description": "A practical functional library for JavaScript programmers.",
"sideEffects": false,
"version": "0.25.0",
"homepage": "http://ramdajs.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ramda/ramda.git"
},
"module": "es/index.js",
"main": "src/index.js",
"unpkg": "dist/ramda.min.js",
"jsdelivr": "dist/ramda.min.js",
"files": [
"es",
"src",
"dist"
],
"scripts": {
"bench": "scripts/benchRunner",
"bookmarklet": "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: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",
"partial-build": "node ./scripts/partialBuild",
"clean": "rimraf es/* src/* dist/* coverage/*",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"postcoverage": "npm run posttest",
"lint": "eslint scripts/bookmarklet scripts/*.js source/*.js source/internal/*.js test/*.js test/**/*.js lib/sauce/*.js lib/bench/*.js",
"pretest": "npm run build:cjs",
"test": "mocha --reporter spec",
"posttest": "git checkout -- dist",
"prebrowser_test": "npm run pretest",
"browser_test": "testem ci",
"postbrowser_test": "npm run posttest"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-annotate-pure-calls": "^0.2.0",
"babel-types": "^6.26.0",
"benchmark": "~1.0.0",
"browserify": "10.x.x",
"cli-table": "0.3.x",
"cross-env": "^2.0.1",
"dox": "latest",
"envvar": "1.x.x",
"eslint": "^2.11.0",
"handlebars": "3.0.x",
"istanbul": "^0.4.x",
"js-yaml": "^3.2.5",
"jsverify": "^0.7.3",
"mocha": "2.x.x",
"ramda": "0.17.x",
"rimraf": "~2.3.2",
"rollup": "^0.50.0",
"rollup-plugin-uglify": "^2.0.1",
"sanctuary": "0.7.x",
"sinon": "^1.17.4",
"testem": "0.9.x",
"xyz": "1.0.x"
}
}