forked from raine/ramda-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "ramda-cli",
"version": "0.17.5",
"description": "A command-line tool for processing JSON with Ramda and LiveScript",
"repository": "raine/ramda-cli",
"keywords": [
"ramda",
"cli",
"json"
],
"scripts": {
"test": "make test",
"test-ci": "make test && make test-func",
"test-local": "make test && make docker-test-func"
},
"bin": {
"ramda": "./bin/ramda",
"R": "./bin/ramda"
},
"author": "Raine Virta <raine.virta@gmail.com>",
"license": "ISC",
"dependencies": {
"JSONStream": "^1.0.4",
"camelize": "^1.0.0",
"cli-table": "Automattic/cli-table",
"debug": "^2.2.0",
"editor": "^1.0.0",
"fast-csv": "^0.6.0",
"flat": "^1.6.0",
"is-there": "^2.0.0",
"livescript": "^1.4.0",
"minimist": "^1.1.1",
"ramda": "^0.14.0",
"split2": "^0.2.1",
"stream-reduce": "^1.0.3",
"through2": "^0.6.5",
"treis": "^2.3.9"
},
"devDependencies": {
"chai": "^2.3.0",
"concat-stream": "^1.4.8",
"mocha": "^2.2.5",
"rewire": "^2.3.3",
"shelljs": "^0.5.0",
"sinon": "^1.14.1",
"strip-ansi": "^2.0.1"
}
}