-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.01 KB
/
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
{
"name": "elm-agenda",
"version": "0.0.1",
"description": "Elm interactive calendar library",
"main": "elm.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"build:example": "elm-make --yes example/Main.elm --output=example/elm.js",
"server:example": "elm-live --yes example/Main.elm --output=example/elm.js --dir=example",
"test": "cypress run --reporter junit --reporter-options mochaFile=test-results/cypress/results.xml",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trezona-lecomte/elm-agenda.git"
},
"author": "Kieran Trezona-le Comte",
"license": "MIT",
"bugs": {
"url": "https://github.com/trezona-lecomte/elm-agenda/issues"
},
"homepage": "https://github.com/trezona-lecomte/elm-agenda#readme",
"devDependencies": {
"cypress": "^2.1.0",
"elm": "^0.18.0",
"elm-live": "^2.7.5"
},
"dependencies": {
"moment": "^2.22.1"
}
}