-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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": "ramda-debug",
"version": "0.1.4",
"description": "Debugging for Ramda.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "./node_modules/.bin/eslint .",
"unit": "./node_modules/.bin/mocha test/spec.*.js --require test/helpers.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sebinsua/ramda-look.git"
},
"keywords": [
"ramda",
"functional",
"point-free",
"function",
"debug",
"debugging",
"look",
"tap",
"trace",
"log",
"types",
"execution"
],
"author": "Seb Insua <me@sebinsua.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebinsua/ramda-look/issues"
},
"homepage": "https://github.com/sebinsua/ramda-look#readme",
"dependencies": {
"@ccheever/crayon": "^5.0.0",
"ramda": "^0.21.0",
"text-hex": "0.0.0",
"util-inspect": "^0.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"mocha": "^2.2.5"
}
}