-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 838 Bytes
/
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
{
"name": "arare",
"version": "0.3.1",
"description": "Lightweight auto-curried functional programming library",
"license": "MIT",
"repository": "klaussinani/arare",
"author": {
"name": "Klaus Sinani",
"email": "klaussinani@gmail.com",
"url": "https://klaussinani.github.io"
},
"bin": {
"arare": "repl.js"
},
"engines": {
"node": ">=6"
},
"files": [
"index.js",
"repl.js",
"src"
],
"keywords": [
"functional",
"javascript",
"library",
"programming"
],
"scripts": {
"test": "xo"
},
"devDependencies": {
"ava": "1.0.0-rc.2",
"xo": "*"
},
"xo": {
"rule": {
"curly": 0,
"max-params": 1,
"no-use-extend-native/no-use-extend-native": 1,
"unicorn/filename-case": 0
},
"semicolon": false,
"space": 2
}
}