-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.87 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
73
74
{
"name": "@lemoncode/fonk",
"version": "1.5.4",
"description": "Form schema validator library",
"main": "dist/@lemoncode/fonk.cjs.js",
"module": "dist/@lemoncode/fonk.esm.js",
"typings": "typings/index.d.ts",
"files": [
"dist",
"typings"
],
"scripts": {
"build": "npm run clean && rollup --config",
"clean": "rimraf dist .rpt2_cache",
"test": "jest -c ./config/test/jest.json --verbose",
"test:watch": "npm test -- --watchAll -i",
"predeploy": "npm run build",
"deploy": "np",
"predeploy:beta": "npm run build",
"deploy:beta": "np --tag=beta --any-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lemoncode/fonk.git"
},
"keywords": [
"fonk",
"validation",
"form",
"form validation",
"validate",
"async validation",
"sync validation"
],
"author": "Lemoncode",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lemoncode/fonk/issues"
},
"homepage": "https://github.com/Lemoncode/fonk#readme",
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"husky": "^4.3.8",
"jest": "^26.6.3",
"np": "^7.4.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.42.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}