-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"name": "@andrewmacmurray/elm-concurrent-task",
"version": "2.0.0",
"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": {
".": {
"types": "./lib/mjs/index.d.ts",
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"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:sub-package-json": "node --experimental-strip-types ./scripts/package-fixup.mts",
"runner:compile": "rm -rf lib/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && npm run runner:sub-package-json",
"check-versions": "node --experimental-strip-types ./scripts/versions.mts"
},
"author": "Andrew MacMurray",
"license": "MIT",
"devDependencies": {
"elm": "^0.19.1-6",
"elm-doc-preview": "^6.0.1",
"elm-review": "^2.13.2",
"elm-test": "^0.19.1-revision12",
"typescript": "^5.2.2"
}
}