-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.21 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
36
{
"name": "chroma-elm",
"version": "1.0.0",
"description": "An Elm native version of chroma.js for color maps, color spaces and operations.",
"repository": "https://github.com/newmana/chroma-elm.git",
"author": "Andrew Newman <andrewfnewman@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"elm-test": "^0.19.1-revision12"
},
"devDependencies": {
"@parcel/transformer-elm": "^2.8.3",
"ansi-regex": "^5.0.1",
"elm": "^0.19.1-5",
"elm-format": "^0.8.6",
"elm-hot": "^1.1.6",
"elm-review": "^2.9.2",
"elm-test": "^0.19.1-revision12",
"htmlnano": "^1.1.1",
"node-elm-compiler": "^5.0.6",
"node-forge": "^1.3.0",
"parcel": "^2.8.3"
},
"resolutions": {},
"scripts": {
"make": "yarn run elm make",
"test": "yarn run elm-test",
"review": "yarn run elm-review",
"full": "yarn run elm-test && yarn run elm-review",
"repl": "yarn run elm repl",
"doc": "yarn run parcel build examples/index.html --dist-dir docs --public-url /chroma-elm --no-cache",
"local-doc": "yarn run parcel --no-cache examples/index.html",
"benchmarks": "yarn run parcel --no-cache benchmarks/index.html",
"generate-brewer": "node util/generate-brewer.js"
}
}