-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
48 lines (48 loc) · 1.5 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
{
"author": "Michael Hurley <[email protected]> (buzzdecafe.com)",
"contributors": [
{
"name": "Michael Hurley",
"email": "[email protected]",
"web": "http://buzzdecafe.com"
},
{
"name": "Ludwig Magnusson",
"email": "[email protected]"
}
],
"name": "ramda-fantasy",
"description": "Fantasy Land compatible types for easy integration with Ramda",
"version": "0.8.1",
"homepage": "https://www.github.com/ramda/ramda-fantasy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ramda/ramda-fantasy.git"
},
"scripts": {
"build": "browserify -r ./index.js -s RF | derequire > dist/ramda-fantasy.js ",
"postbuild": "uglifyjs dist/ramda-fantasy.js -m -c unused=false -o dist/ramda-fantasy.min.js",
"jscs": "node_modules/.bin/jscs src/* test/*",
"jshint": "node_modules/.bin/jshint src/* test/*",
"pretest": "npm run jshint",
"release-major": "xyz --repo [email protected]:ramda/ramda-fantasy.git --increment major",
"release-minor": "xyz --repo [email protected]:ramda/ramda-fantasy.git --increment minor",
"release-patch": "xyz --repo [email protected]:ramda/ramda-fantasy.git --increment patch",
"test": "mocha"
},
"dependencies": {
"ramda": ">=0.15.0"
},
"devDependencies": {
"browserify": "13.1.x",
"derequire": "^2.0.3",
"jscs": "1.13.x",
"jshint": "~2.7.0",
"jsverify": "^0.7.1",
"mocha": "^2.1.0",
"promise": "7.1.1",
"uglify-js": "2.6.x",
"xyz": "0.5.x"
}
}