-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "honeybee-client",
"version": "0.2.0",
"description": "A declarative and reactive library for creating both static pages, multi-page and single page applications.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"files": [
"lib/**/*",
"i4w*.map.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node join-ts.js && tsc && node parse.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"postversion": "npm run build && git add . && git commit -m \"New version build\" && git push && git push --tags"
},
"keywords": [
"honeybee",
"honey-bee",
"honeybeeJS",
"reactivity",
"web-app",
"javascript",
"import-for-web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KBismark/honey-bee.git"
},
"author": "Bismark Yamoah",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/babel__core": "^7.20.1",
"prettier": "^2.8.8",
"terser": "^5.18.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.3"
}
}