forked from elixirscript/elixirscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 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
{
"name": "elixirscript",
"version": "0.14.1",
"description": "Convert Elixir to JavaScript",
"main": "elixir.js",
"bin": {
"elixirscript": "./elixirscript"
},
"scripts": {
"lint": "eslint src/javascript/lib/**/*.js src/javascript/tests/**/*.js",
"build": "gulp build && rollup -m inline src/elixirscript/elixir.js -o priv/Elixir.js",
"clean": "rm -rf src/javascript/dist_build",
"test": "mocha src/javascript/tests --recursive --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "[email protected]:bryanjos/elixirscript.git"
},
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"mocha": "^2.4.5",
"rollup": "^0.26.1"
}
}