-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
73 lines (73 loc) · 2.25 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
68
69
70
71
72
73
{
"name": "hybrids",
"version": "9.1.8",
"description": "A JavaScript framework for creating fully-featured web applications, components libraries, and single web components with unique declarative and functional architecture",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"types": "types/index.d.ts",
"bin": {
"hybrids": "cli/index.js"
},
"sideEffects": false,
"homepage": "https://hybrids.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/hybridsjs/hybrids.git"
},
"bugs": "https://github.com/hybridsjs/hybrids/issues",
"author": "Dominik Lubański <[email protected]>",
"license": "MIT",
"keywords": [
"framework",
"state management",
"router",
"web components",
"web-components",
"custom elements",
"shadow dom",
"template engine"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"karma": "karma start karma.conf.cjs",
"dev": "npm run karma -- --no-single-run --browsers ChromeHeadless",
"dev:coverage": "rm -rf ./coverage && NODE_ENV=coverage npm run dev",
"lint": "eslint ./src ./test ./cli --ext .js",
"format": "prettier --write ./src ./test ./cli",
"test": "npm run test:cli && npm run lint && npm run karma && npm run test:typescript",
"test:coverage": "rm -rf ./coverage && NODE_ENV=coverage npm run karma",
"test:cli": "node ./cli/test.js",
"test:setup": "playwright install firefox webkit --with-deps",
"test:typescript": "tsc --noEmit --project ./test/types/tsconfig.json",
"release": "npm run test && standard-version -a"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.2",
"jasmine-core": "^5.0.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.2",
"karma-webkit-launcher": "^2.1.0",
"playwright": "^1.41.2",
"prettier": "^3.1.1",
"standard-version": "^9.3.2",
"typescript": "^5.4.3"
},
"standard-version": {
"scripts": {
"precommit": "git add docs/CHANGELOG.md"
}
}
}