-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.05 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
37
{
"name": "@andrewmacmurray/elm-concurrent-task",
"version": "1.1.1",
"description": "Run a tree of Tasks concurrently, call JS functions as Tasks (Task Ports)",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"types": "lib/mjs/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/mjs/index.d.ts"
}
},
"files": [
"lib"
],
"scripts": {
"test": "elm-test",
"docs": "elm-doc-preview",
"docs:verify": "elm make --docs docs.json",
"review": "elm-review --fix",
"review:ci": "elm-review",
"review:watch": "elm-review --watch",
"runner:compile": "rm -rf lib/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./scripts/package-fixup.sh",
"check-versions": "node ./scripts/versions.js"
},
"author": "Andrew MacMurray",
"license": "MIT",
"devDependencies": {
"elm": "^0.19.1-6",
"elm-doc-preview": "^1.0.7",
"elm-review": "^2.10.2",
"elm-test": "^0.19.1-revision12",
"typescript": "^5.2.2"
}
}