forked from fantasyland/fantasy-land
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "fantasy-land",
"author": "Brian McKenna",
"version": "3.1.0",
"description": "Specification for interoperability of common algebraic structures in JavaScript",
"license": "MIT",
"homepage": "https://github.com/fantasyland/fantasy-land",
"keywords": [
"algebraic",
"monad",
"applicative",
"functor",
"monoid",
"semigroup",
"chain",
"apply"
],
"issues": {
"url": "https://github.com/fantasyland/fantasy-land/issues"
},
"dependencies": {
"daggy": "0.0.x",
"fantasy-combinators": "0.0.x"
},
"devDependencies": {
"eslint": "3.8.x",
"nodeunit": "0.9.x",
"sanctuary-style": "0.2.x",
"xyz": "2.0.x"
},
"repository": {
"type": "git",
"url": "https://github.com/fantasyland/fantasy-land.git"
},
"files": [
"index.js",
"internal/*.js",
"laws/*.js"
],
"main": "index.js",
"scripts": {
"lint": "eslint --config node_modules/sanctuary-style/eslint-es6.json --env es6 --env node --rule 'max-len: [off]' -- *.js laws/*.js internal/*.js",
"unit": "nodeunit test.js",
"test": "npm run-script lint && npm run-script unit",
"release-major": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment major",
"release-minor": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment minor",
"release-patch": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment patch"
}
}