-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
39
40
41
42
43
{
"name": "@optionfactory/ful",
"version": "6.0.3",
"main": "dist/ful.iife.js",
"module": "dist/ful.mjs",
"exports": {
"import": "./dist/ful.mjs",
"require": "./dist/ful.iife.js"
},
"files": [
"dist/**"
],
"repository": {
"url": "git+https://github.com/optionfactory/ful.git"
},
"keywords": [
"ui",
"browser",
"webcomponents",
"httpclient"
],
"license": "MIT",
"author": "rferranti",
"contributors": [],
"scripts": {
"check": "tsc --project ./jsconfig.json",
"clean": "rimraf dist && npm prune",
"initialize": "npm install",
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=test/lcov.info",
"build": "npx rollup --config rollup.conf.mjs"
},
"dependencies": {
"@optionfactory/ftl": "^6.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"jsdom": "^27.4.0",
"rollup-plugin-postcss": "^4.0.2",
"@rollup/plugin-terser": "^0.4.4",
"sass": "^1.97.2",
"terser": "^5.46.0"
}
}