-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "rxhtml",
"version": "1.0.0",
"description": "Minimal framework for webapps",
"main": "dist/rxhtml.cjs.js",
"module": "dist/rxhtml.es.js",
"scripts": {
"build": "rimraf dist && rimraf doc && rollup -c",
"dev": "rollup -c -w",
"examples": "http-server",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellomenu/rxhtml.git"
},
"keywords": [
"rx",
"html",
"rxhtml",
"reacvive"
],
"author": "Dario Mannu",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellomenu/rxhtml/issues"
},
"homepage": "https://github.com/hellomenu/rxhtml#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-async-generator-functions": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-jest": "^27.2.0",
"babel-register": "^6.26.0",
"http-server": "^13.0.2",
"jest": "^27.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2"
}
}