-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 955 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
{
"name": "elm-simple-animation",
"version": "2.3.0",
"description": "stateless animation utils for Elm",
"scripts": {
"test": "elm-test",
"docs": "elm-doc-preview",
"docs:verify": "elm make --docs docs.json",
"review": "elm-review --fix",
"review:ci": "elm-review",
"examples": "cd examples && elm reactor --port 8001",
"examples:build": "cd examples && elm make src/Main.elm && mkdir -p dist && mv index.html dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewMacmurray/elm-simple-animation.git"
},
"author": "Andrew MacMurray",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewMacmurray/elm-simple-animation/issues"
},
"homepage": "https://github.com/andrewMacmurray/elm-simple-animation#readme",
"devDependencies": {
"elm": "^0.19.1-5",
"elm-doc-preview": "^1.0.7",
"elm-review": "^2.10.2",
"elm-test": "^0.19.1-revision12"
}
}