-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@ficusjs/core",
"version": "3.2.0",
"description": "Core functions for FicusJS",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "run-p build:*",
"build:all": "rollup -i src/index.mjs -o dist/index.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:custom-element": "rollup -i src/custom-element.mjs -o dist/custom-element.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p serve open",
"lint": "standard \"./src/**/*.mjs\" \"./test/unit/**/*.mjs\"",
"open": "open-cli http://127.0.0.1:8080/test/e2e",
"test": "npm run test:unit && start-server-and-test serve:silent http://127.0.0.1:8080 cy:run",
"test:unit": "ava test/unit/**/*.spec.mjs",
"test:unit:watch": "ava test/unit/**/*.spec.mjs --watch",
"test:unit:coverage": "c8 --all --include=src/**/*.mjs --reporter=lcov --reporter=text-summary ava test/unit/**/*.spec.mjs --verbose",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-core.git"
},
"keywords": [
"ficusjs",
"frontend",
"web-components"
],
"author": "Matt Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ficusjs/ficusjs-core/issues"
},
"standard": {
"ignore": [
"*.ts"
]
},
"homepage": "https://github.com/ficusjs/ficusjs-core#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"ava": "6.1.3",
"c8": "10.1.2",
"cypress": "13.15.0",
"http-server": "14.1.1",
"jsdom": "25.0.1",
"node-sessionstorage": "1.0.0",
"npm-run-all": "4.1.5",
"open-cli": "8.0.0",
"rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
"sinon": "19.0.2",
"standard": "17.1.2",
"start-server-and-test": "2.0.8"
},
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./custom-element": {
"import": "./dist/custom-element.mjs"
}
}
}