-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 958 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": "yup-abn",
"version": "1.1.0",
"description": "Yup extension that validates ABN, ACN, ARBN or ARSN business identifiers for Australian business'",
"repository": "git@github.com:azerella/yup-abn.git",
"author": "Adam Zerella <hi@azerel.la> (https://azerel.la)",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"dependencies": {
"yup": "^0.32.11"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.1",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"keywords": [
"yup",
"extension",
"validation",
"schema",
"number",
"abn",
"acn",
"australia"
],
"files": [
"lib/yup-abn.cjs.js",
"lib/extension.d.ts"
],
"types": "lib/extension.d.ts"
}