-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1007 Bytes
/
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
{
"name": "jblocks",
"version": "1.2.2",
"description": "A tiny JavaScript library that helps you building UI components",
"author": "Viktor Karpov <[email protected]>",
"license": "MIT",
"devDependencies": {
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdoc-to-markdown": "^8.0.0",
"release": "^6.3.1",
"request": "^2.88.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"main": "lib/index.js",
"files": [
"jblocks.js"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "npx webpack --mode=production",
"test": "node_modules/.bin/jest",
"doc": "npx jsdoc2md lib/index.js > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitkarpov/jblocks.git"
},
"keywords": [
"UI"
],
"bugs": {
"url": "https://github.com/vitkarpov/jblocks/issues"
},
"homepage": "https://github.com/vitkarpov/jblocks",
"dependencies": {
"true-pubsub": "^1.0.0"
}
}