-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@obewds/puff-js",
"version": "0.1.8",
"description": "The official repository for Puff.js, a Node.js and Typescript Library for OBE:WDS Design System packages.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npx rimraf dist && tsc",
"test": "jest",
"coverage": "jest --coverage",
"test:watch": "jest --watch",
"pkg:org": "npm config set scope obewds",
"tag": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"bump:patch": "npm version patch && npm run build",
"bump:minor": "npm version minor && npm run build",
"bump:major": "npm version major && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obewds/puff-js.git"
},
"author": "Matt McT",
"license": "MIT",
"bugs": {
"url": "https://github.com/obewds/puff-js/issues"
},
"homepage": "https://github.com/obewds/puff-js#readme",
"keywords": [
"viltds",
"vilt",
"vue",
"vueventus",
"laravel",
"vite",
"tailwindcss",
"obewds",
"typescript",
"jetstream",
"nodejs"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/fs-extra": "^11.0.3",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.9",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0"
}
}