-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
74
{
"name": "trebor",
"version": "1.0.2",
"description": "A Nodejs module to make standalone web components.",
"bin": {
"trebor": "./bin/trebor.js"
},
"main": "./build/index.js",
"engines": {
"node": ">=11"
},
"dependencies": {
"commander": "^2.20.0",
"glob": "^7.1.6",
"globals": "^12.1.1",
"html-entities": "^1.2.1",
"hyntax": "^1.1.2",
"loader-utils": "^1.2.3",
"meriyah": "^1.9.3",
"rollup-pluginutils": "^2.6.0",
"terser": "^4.4.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@types/css": "0.0.31",
"@types/glob": "^7.1.1",
"@types/html-entities": "^1.2.16",
"@types/jest": "^23.3.14",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/node": "^12.12.7",
"@types/puppeteer": "^1.20.2",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.7.1",
"eslint-plugin-html": "^6.0.0",
"jest": "^23.6.0",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^2.0.0",
"rollup": "^1.26.5",
"rollup-plugin-terser": "^5.2.0",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^6.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "tsc -p ./src && tsc -p ./tools",
"build:cli-example": "node bin/trebor.js -i examples/01-Hello_World/hello.html",
"build:webpack-example": "webpack --config examples/02-Webpack/webpack.config.js",
"build:rollup-example": "rollup --config examples/03-Rollup/rollup.config.js",
"build:todomvc-example": "webpack --config examples/04-ToDoMVC/webpack.config.js",
"build:test:components": "node bin/trebor.js -i test/components/*.html",
"test": "tsc -p ./test && jest -c test/jest.config.js --maxWorkers=2"
},
"keywords": [
"single-file-component",
"standalone-components",
"non-framework",
"cli",
"web-components"
],
"author": "InDIOS",
"repository": {
"type": "git",
"url": "git+https://github.com/InDIOS/trebor.git"
},
"license": "MIT",
"contributors": [
{
"email": "robert04siel@gmail.com",
"name": "Roberto Asiel Guevara Castañeda"
}
]
}