-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 2.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ramda-cli",
"version": "6.0.0",
"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",
"build-web:watch": "parcel watch --no-source-maps --out-dir web-dist web/index.html",
"build-web": "parcel build --no-source-maps --out-dir web-dist web/index.html",
"build:watch": "watchy --debounce 0.1 -w 'src/**' -- make compile",
"watch": "run-p build-web:watch build:watch"
},
"bin": {
"ramda": "./bin/ramda"
},
"author": "Raine Virta <[email protected]>",
"license": "ISC",
"dependencies": {
"JSONStream": "^1.3.5",
"body-parser": "^1.18.3",
"camelize": "^1.0.0",
"cli-table3": "^0.5.1",
"compression": "^1.7.3",
"debug": "^4.1.0",
"editor": "^1.0.0",
"fast-csv": "^2.5.0",
"flat": "^4.1.0",
"get-port": "^4.1.0",
"hook-stream": "^2.1.2",
"is-there": "^4.4.3",
"livescript": "^1.6.0",
"minimist": "^1.2.0",
"opn": "^5.4.0",
"polka": "^0.5.1",
"ramda": "0.26.1",
"runtime-npm-install": "^5.0.0",
"serve-static": "^1.13.2",
"split2": "^3.0.0",
"sse": "0.0.8",
"stream-concat": "^0.3.0",
"string-argv": "^0.1.1",
"tempfile": "^2.0.0",
"term-color": "^1.0.1",
"through2": "^3.0.0",
"transduce-stream": "^0.5.0"
},
"devDependencies": {
"ansi-to-html": "^0.6.9",
"autoprefixer": "^9.6.0",
"browser-cookies": "^1.2.0",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"codemirror": "^5.42.0",
"concat-stream": "^1.6.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"postcss-modules": "^1.4.1",
"react": "^16.6.3",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.3",
"react-transition-group": "^2.5.2",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.3.1",
"reactstrap": "^7.0.2",
"rewire": "^4.0.1",
"sass": "^1.15.2",
"shelljs": "^0.8.3",
"sinon": "^7.2.2",
"stream-http": "^3.0.0",
"string-to-stream": "^1.1.1",
"strip-ansi": "^5.0.0",
"watchy": "^0.9.5"
},
"files": [
"lib/*",
"web-dist/*",
"bin/ramda"
]
}