This repository was archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "@weccoframework/core",
"version": "0.24.0",
"description": "A simple, minimalistic web framework based on web components and HTML templates",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/weccoframework/core.git"
},
"homepage": "https://github.com/weccoframework/core",
"devDependencies": {
"typescript": "^5.0.4",
"mocha": "^10.2.0",
"@types/mocha": "^10.0.1",
"ts-node": "^10.9.1",
"iko": "^0.6.0",
"jsdom": "^22.0.0",
"jsdom-global": "^3.0.2",
"nyc": "^15.1.0",
"rollup": "^3.21.6",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@playwright/test": "^1.33.0",
"express": "^4.18.2",
"@types/express": "^4.17.17",
"tslint": "^6.1.3"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "mocha --require ts-node/register --require jsdom-global/register test/unit/**/*.test.ts",
"acceptance-test": "playwright test --project=acceptance",
"acceptance-test-server": "node test/acceptance/test-server",
"performance-test": "playwright test --project=performance",
"coverage": "nyc mocha --require ts-node/register --require jsdom-global/register test/unit/**/*.test.ts",
"lint": "tslint -p tslint.json"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}