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 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "composi",
"version": "3.2.1",
"description": "A JavaScript library for creating websites, PWAs and hybrid apps.",
"main": "index.js",
"scripts": {
"bundle": "rollup -c",
"build": "npm run format && npm run lint && npm run checkjs && npm run bundle && gzip dist/composi.js",
"checkjs": "tsc --allowJs --checkJs --noEmit --target ES6 lib/*.js",
"test": "browser-sync . --index test/index.html",
"prepare": "npm run build",
"format": "prettier --no-semi --single-quote --write ./lib/*.js",
"lint": "eslint --config ./.eslintrc.json lib"
},
"bin": "./bin/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/composor/composi.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/composor/composi/issues"
},
"homepage": "https://github.com/composor/composi#readme",
"dependencies": {
"fs-extra": "^5.0.0",
"replace-in-file": "^2.6.4",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-helpers": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.21.0",
"eslint": "^4.19.1",
"gzip-cli": "^0.1.3",
"prettier": "^1.13.7",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-resolve": "0.0.1-predev.1",
"rollup-plugin-uglify": "^2.0.1",
"typescript": "^2.9.2"
}
}