-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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": "panix",
"version": "1.0.0",
"description": "Lightweight Virtual Dom library",
"main": "./dist/panix.umd.js",
"module": "./dist/panix.es.js",
"unpkg": "./dist/panix.es.min.js",
"jsdelivr": "./dist/panix.es.min.js",
"scripts": {
"test": "firefox ./tests/SpecRunner.html",
"pretty": "npx prettier --write .",
"minify": "node .minify.js",
"prepare": "npx prettier --write . && npx rollup -c && node ./minifier.js && husky install"
},
"author": "Mehan alavimajd",
"license": "see License in LICENSE",
"devDependencies": {
"husky": "^8.0.1",
"prettier": "^2.3.2",
"rollup": "^2.58.0"
},
"dependencies": {
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"jsdom": "^20.0.0",
"uglify-js": "^3.17.0"
},
"repository": {
"type": "git",
"directory": "https://github.com/mehanalavimajd/panix"
},
"homepage": "https://github.com/mehanalavimajd/panix",
"bugs": "https://github.com/mehanalavimajd/panix/issues",
"keywords": [
"front-end",
"virtual-dom"
]
}