-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "fit-html",
"version": "0.7.0",
"description": "3KB functional Web Components without bloat",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Festify/fit-html",
"author": "Festify Dev Team <[email protected]>",
"license": "MIT",
"private": false,
"bundlesize": [
{
"path": ".tmp/index.min.js",
"maxSize": "3 kb"
}
],
"devDependencies": {
"bundlesize": "^0.17.0",
"rollup": "^0.64.1",
"rollup-plugin-babel-minify": "^5.0.0",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"peerDependencies": {
"lit-html": "0.9 - 0.10",
"redux": "^4.0.0"
},
"scripts": {
"build": "npm run lint && tsc && NODE_ENV=production rollup -c",
"check-size": "npm run build && bundlesize",
"fix": "tslint -p tsconfig.json --fix",
"lint": "tslint -p tsconfig.json"
}
}