This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "@composi/core",
"version": "2.7.10",
"description": "A JavaScript library for creating websites, PWAs and hybrid apps.",
"main": "src/index.js",
"module": "dist/composi-core.mjs",
"type": "module",
"scripts": {
"bundle": "rollup -c",
"build": "run-s lint checkjs bundle gzip gzip-mjs",
"checkjs": "tsc",
"start": "npm run build",
"gzip": "gzip dist/composi-core.js --output=dist",
"gzip-mjs": "gzip dist/composi-core.mjs --output=dist",
"test": "browser-sync . --index test/index.html",
"format": "prettier --no-semi --single-quote --write ./src/*.js",
"lint": "eslint --config ./.eslintrc.json src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/composi/core.git"
},
"keywords": [
"angular",
"component",
"composi",
"frontend",
"hybrid",
"hyperscript",
"jsx",
"library",
"progressive web app",
"pwa",
"react",
"vuejs",
"virtual dom"
],
"author": "Robert Biggs",
"license": "MIT",
"bugs": {
"url": "https://github.com/composi/core/issues"
},
"homepage": "https://github.com/composi/core#readme",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-transform-parameters": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-modules": "^0.1.4",
"@types/node": "^13.13.45",
"browser-sync": "^2.26.14",
"eslint": "^6.8.0",
"gzip-cli": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.39.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^3.9.9"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"typings": "types",
"publishConfig": {
"access": "public"
}
}