forked from jachin/much-select-elm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@getdrip/much-select-elm",
"version": "0.18.3",
"description": "A fancy selector web component written (mostly) in elm.",
"type": "module",
"module": "dist/much-select.js",
"repository": "github:DripEmail/much-select-elm",
"engines": {
"node": ">=12.14",
"npm": ">=7.13.0"
},
"source": "public/index.html",
"targets": {
"site": {
"source": "./public/index.html",
"distDir": "./build/site/public"
},
"library": {
"distDir": "./dist",
"source": "./src/much-select.js",
"outputFormat": "esmodule",
"isLibrary": true,
"optimize": false
}
},
"scripts": {
"start": "run-pty run-pty.json",
"test": "elm-test",
"web-test-runner": "web-test-runner tests/**/*.test.html --node-resolve --concurrency=1",
"web-test-runner-with-coverage": "web-test-runner tests/**/*.test.html --coverage --node-resolve --concurrency=1",
"build": "./scripts/build.sh",
"build-site": "./scripts/build-site.sh",
"build-and-test": "npm run build; npm run test; npm run web-test-runner",
"serve": "scripts/serve-site.sh",
"deploy-site": "npm run build && npm run build-site && firebase deploy",
"lint": "eslint; eslint tests",
"format": "elm-format",
"review": "elm-review"
},
"author": "Jachin Rupe <[email protected]>",
"license": "MIT",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^3.2.0",
"@web/test-runner": "^0.17.2",
"@web/test-runner-commands": "^0.8.1",
"@web/test-runner-mocha": "^0.8.1",
"chai-dom": "^1.11.0",
"cypress": "^13.3.1",
"elm-esm": "^1.1.4",
"elm-review": "^2.10.3",
"elm-test": "0.19.1-revision12",
"elm-tooling": "^1.15.0",
"elm-watch": "^1.1.2",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"run-pty": "^4.1.0",
"terser": "^5.21.0"
}
}