-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@sschepis/fug",
"version": "0.0.1",
"description": "A markup language for laying out uis and rendering them to html, WebComponents, react, svelte, and vue",
"directories": {
"test": "test"
},
"main": "dist/src/index.js",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.ts",
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf ./dist",
"lint": "eslint \"src/**/*.ts\"",
"lint:types": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"npm-publish": "npm run build && npm publish"
},
"devDependencies": {
"@open-wc/testing": "^3.1.6",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@web/test-runner": "^0.14.0",
"@web/test-runner-mocha": "^0.7.5",
"chai": "^4.3.7",
"es-dev-server": "^2.1.0",
"esbuild": "^0.15.12",
"eslint": "^8.25.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-eslint": "0.0.1-alpha.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sschepis/fug.git"
},
"keywords": [
"html",
"markup",
"layout",
"ui",
"webcomponents",
"react",
"vue",
"svelte",
"compiler"
],
"author": "Sebastian Schepis",
"license": "ISC",
"bugs": {
"url": "https://github.com/sschepis/fug/issues"
},
"homepage": "https://github.com/sschepis/fug#readme"
}