-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "@optionfactory/ftl",
"version": "6.0.0",
"main": "dist/ftl.iife.js",
"module": "dist/ftl.mjs",
"exports": {
"import": "./dist/ftl.mjs",
"require": "./dist/ftl.iife.js"
},
"files": [
"dist/**"
],
"repository": {
"url": "git+https://github.com/optionfactory/ftl.git"
},
"keywords": [
"templating",
"dom",
"webcomponents"
],
"license": "MIT",
"author": "rferranti",
"contributors": [
"Petro36",
"shun17",
"Grogdunn"
],
"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"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"jsdom": "^27.0.0",
"peggy": "^5.0.4"
}
}