forked from zellwk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 851 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
{
"name": "@zellwk/javascript",
"version": "4.0.0",
"description": "Collection of useful JavaScript code — for both browsers and node.",
"type": "module",
"files": [
"src"
],
"exports": {
"./*": "./src/*"
},
"keywords": [
"javascript",
"node"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"release": "np --no-publish && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zellwk/javascript.git"
},
"author": "Zell Liew <[email protected]> (https://zellwk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zellwk/javascript/issues"
},
"homepage": "https://github.com/zellwk/javascript#readme",
"devDependencies": {
"np": "^7.6.4",
"vite": "^3.1.3",
"vitest": "^0.23.4"
}
}