-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
50
51
52
53
{
"name": "elixirscript",
"version": "0.26.1",
"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": "rollup -c rollup.config.js",
"clean": "rm -rf priv/build",
"test": "ava src/javascript/tests",
"build:test-app": "mix elixirscript test/app/src/ -f common -o test/app/build/",
"test-app": "yarn run build:test-app && NODE_ENV=test ava 'test/app/spec/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "[email protected]:bryanjos/elixirscript.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"erlang-types": "^1.0.0",
"tailored": "2.4.5"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.3.2",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-babili": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": {
"babelrc": true
}
}
}