-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "pipe-transformation",
"version": "3.0.0",
"description": "pipe-transformation",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/index.ls --compilers ls:livescript",
"coverage": "gulp coverage",
"coveralls": "gulp coverage && cat coverage/lcov.info | coveralls"
},
"author": "Furqan Zafar",
"license": "ISC",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"highland": "global:highland",
"JSONStream": "global:JSONStream",
"moment": "global:moment",
"prelude-extension": "global:preludeExtension",
"rx": "global:Rx",
"socket.io-client": "global:io",
"stream": "global:stream",
"./transformation-context": "global:transformationContext",
"transpilation": "global:transpilation"
},
"dependencies": {
"JSONStream": "^1.0.7",
"highland": "^2.5.1",
"moment": "^2.11.0",
"prelude-extension": "^0.0.13",
"prelude-ls": "^1.1.2",
"ramda": "^0.22.1",
"rx": "^4.0.7",
"socket.io-client": "^1.3.7",
"stream": "0.0.2",
"transpilation": "^2.0.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-livescript": "^3.0.0",
"gulp-livescript-istanbul": "0.0.1",
"gulp-mocha": "^2.2.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.3",
"istanbul": "^0.3.20",
"livescript": "^1.4.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"should": "^7.1.0",
"vinyl-source-stream": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pipend/pipe-transformation"
}
}