-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "transpilation",
"version": "0.1.3",
"description": "A library for compiling from different (to-js) langauges to javascript",
"main": "index.js",
"scripts": {
"test": "mocha test/index.ls --compilers ls:livescript",
"coverage": "gulp coverage",
"coveralls": "gulp coverage && cat coverage/lcov.info | coveralls"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-standalone": "^6.4.4",
"livescript-standalone": "0.0.2",
"prelude-ls": "^1.1.2"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"babel-standalone": "global:Babel",
"livescript-standalone": "global:livescript"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-if": "^2.0.1",
"gulp-livescript": "^3.0.0",
"gulp-livescript-istanbul": "^0.0.2",
"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/transpilation"
}
}