Skip to content

Commit d185db0

Browse files
committed
Package file
1 parent 4fd63ff commit d185db0

File tree

2 files changed

+107
-0
lines changed

2 files changed

+107
-0
lines changed

.jshintrc

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
2+
{
3+
"bitwise" : true,
4+
"curly" : true,
5+
"eqeqeq" : true,
6+
"immed" : true,
7+
"latedef" : true,
8+
"newcap" : true,
9+
"noarg" : true,
10+
"noempty" : true,
11+
"nonew" : true,
12+
"plusplus" : true,
13+
"regexp" : true,
14+
"undef" : true,
15+
"strict" : true,
16+
"trailing" : true,
17+
"unused" : true,
18+
"loopfunc" : true,
19+
20+
"asi" : false,
21+
"boss" : false,
22+
"debug" : false,
23+
"eqnull" : false,
24+
"es5" : false,
25+
"esnext" : false,
26+
"evil" : false,
27+
"expr" : false,
28+
"forin" : false,
29+
"funcscope" : false,
30+
"globalstrict" : false,
31+
"quotmark" : false,
32+
"iterator" : false,
33+
"lastsemic" : false,
34+
"laxbreak" : false,
35+
"laxcomma" : false,
36+
"multistr" : false,
37+
"onecase" : false,
38+
"proto" : false,
39+
"regexdash" : false,
40+
"scripturl" : false,
41+
"smarttabs" : false,
42+
"shadow" : false,
43+
"sub" : false,
44+
"supernew" : false,
45+
"validthis" : false,
46+
47+
"browser" : false,
48+
"couch" : false,
49+
"devel" : false,
50+
"dojo" : false,
51+
"jquery" : false,
52+
"mootools" : false,
53+
"node" : true,
54+
"nonstandard" : false,
55+
"prototypejs" : false,
56+
"rhino" : false,
57+
"wsh" : false,
58+
59+
"nomen" : false,
60+
"onevar" : false,
61+
"passfail" : false,
62+
"white" : false,
63+
64+
"maxerr" : 100,
65+
"predef" : [
66+
"describe",
67+
"it",
68+
"after",
69+
"before",
70+
"beforeEach"
71+
],
72+
"indent" : 2,
73+
"maxstatements" : 20,
74+
"maxcomplexity" : 10
75+
}

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "rarity",
3+
"description": "Control function arity.",
4+
"version": "1.0.0",
5+
"author": "Matthieu Bacconnier <[email protected]>",
6+
"scripts": {
7+
"test": "NODE_ENV=test mocha -R spec test/",
8+
},
9+
"main": "./index.js",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/AnyFetch/rarity"
13+
},
14+
"keywords": [
15+
"rarity",
16+
"arity"
17+
"waterfall"
18+
"arguments"
19+
"parameters"
20+
],
21+
"dependencies": {
22+
},
23+
"devDependencies": {
24+
"async": "0.9.x",
25+
"mocha": "1.x.x",
26+
"should": "3.3.x"
27+
},
28+
"licence": "MIT",
29+
"engines": {
30+
"node": ">=0.10"
31+
}
32+
}

0 commit comments

Comments
 (0)