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
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "@composi/runtime",
"version": "1.3.10",
"description": "A JavaScript library providing state management for DOM renderers.",
"main": "src/index.js",
"module": "dist/runtime.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/runtime.js --output=dist",
"gzip-mjs": "gzip dist/runtime.mjs --output=dist",
"format": "prettier --no-semi --single-quote --write ./src/*.js",
"lint": "eslint --config ./.eslintrc.json src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/composi/core.git"
},
"keywords": [
"angular",
"component",
"composi",
"elm",
"frontend",
"hybrid",
"hyperscript",
"jsx",
"library",
"react",
"redux"
],
"author": "Robert Biggs",
"license": "MIT",
"bugs": {
"url": "https://github.com/composi/runtime/issues"
},
"homepage": "https://github.com/composi/runtime#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"browser-sync": "^2.26.12",
"eslint": "^6.8.0",
"gzip-cli": "^1.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.7.2",
"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.8.3"
},
"typings": "types",
"publishConfig": {
"access": "public"
}
}