-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 914 Bytes
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
{
"name": "ramda_playground",
"version": "1.0.0",
"description": "Playground for testing Ramda functional approach to solve problems",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"lint": "eslint .",
"pretest": "eslint .",
"coverage": "nyc --reporter=lcov npm test"
},
"keywords": [
"ramda",
"functional",
"programming",
"fp",
"javascript",
"node",
"nodejs",
"js"
],
"author": "Douglas Nomizo",
"license": "MIT",
"dependencies": {
"ava": "^3.9.0",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.22.0",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"prettier": "2.0.5",
"ramda": "^0.25.0"
},
"ava": {
"require": [
"esm"
]
},
"eslintConfig": {
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}
}