-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.67 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@jitbug/helpers",
"version": "3.0.0",
"description": "Helpers for Jitbug's Ionic + Stencil PWAs.",
"type": "module",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "npm run build -- --watch",
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"clean": "rm -rf arrays dates fp ionic strings time utils index.d.ts index.js",
"release": "npm test && npm run clean && npm run build && standard-version --infile=changelog.md && echo 👆 that without \\`npm publish\\`"
},
"author": "Jitbug Ltd",
"repository": "jitbug/helpers",
"license": "MIT",
"engines": {
"node": ">= 20"
},
"files": [
"/arrays",
"/dates",
"/fp",
"/ionic",
"/strings",
"/time",
"/utils",
"/index.d.ts",
"/index.js"
],
"devDependencies": {
"@ionic/core": "^6.7.5",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@types/nprogress": "0.2.3",
"jest": "29.7.0",
"moment": "2.30.1",
"moment-timezone": "0.5.46",
"nprogress": "0.2.0",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "4.1.0",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"peerDependencies": {
"@ionic/core": ">=6.x",
"moment": ">=2.x",
"moment-timezone": ">=0.x",
"nprogress": ">=0.x",
"typescript": ">=5.x"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true,
"trailingComma": "all",
"bracketSpacing": true,
"overrides": [
{
"files": [
"package.json"
],
"options": {
"useTabs": false
}
}
]
}
}