-
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.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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.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": "nyc ava src/javascript/tests",
"build:test-app": "MIX_ENV=test mix elixirscript Main -f common -o test/app/build/",
"test-app": "yarn 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.1",
"tailored": "^2.6.3"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.7.0",
"nyc": "^11.0.3",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-babili": "^3.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^2.3.8"
},
"ava": {
"require": ["babel-register"],
"babel": {
"babelrc": true
}
}
}