-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "elixirscript",
"version": "0.25.0",
"description": "Convert Elixir to JavaScript",
"main": "elixir.js",
"bin": {
"elixirscript": "./elixirscript"
},
"scripts": {
"lint": "eslint src/javascript/lib/**/*.js src/javascript/tests/**/*.js",
"lint:fix": "eslint src/javascript/lib/**/*.js src/javascript/tests/**/*.js --fix",
"build": "npm run build:es && npm run build:umd && npm run build:common",
"build:es": "rollup -c rollup.config.js",
"build:umd": "rollup -c rollup.config.js -f umd -o priv/umd/elixir/Elixir.Bootstrap.js",
"build:common": "rollup -c rollup.config.js -f cjs -o priv/common/elixir/Elixir.Bootstrap.js",
"clean": "rm -rf priv",
"test": "mocha src/javascript/tests --recursive --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "[email protected]:bryanjos/elixirscript.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"erlang-types": "^1.0.0",
"tailored": "2.3.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"mocha": "^2.4.5",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0"
}
}