-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
42 lines (42 loc) · 880 Bytes
/
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
{
"name": "elchemy",
"version": "0.8.8",
"description": "Write Elixir code using Elm-inspired syntax (elm-make compatible)",
"directories": {
"example": "example",
"test": "tests"
},
"files": [
"elchemy",
"elchemy.js",
"elchemy_node.js",
"templates/*"
],
"bin": {
"elchemy": "./elchemy"
},
"scripts": {
"test": "elm-test",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wende/elchemy.git"
},
"bugs": {
"url": "https://github.com/wende/elchemy/issues"
},
"homepage": "https://github.com/wende/elchemy#readme",
"devDependencies": {
"elm-format": "^0.6.1-alpha",
"elm-test": "0.18.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.1"
},
"lint-staged": {
"*.elm": [
"node_modules/.bin/elm-format --yes",
"git add"
]
}
}