forked from lundegaard/validarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.09 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
75
76
77
78
79
80
81
82
83
{
"private": true,
"description": "Validations with Ramda done right.",
"contributors": [
"Tomas Konrady <[email protected]>",
"Vaclav Jancarik <[email protected]>",
"Kristyna Kamenicka <[email protected]>",
"Lukas Sulik <[email protected]>"
],
"engines": {
"node": ">=8"
},
"keywords": [
"validator",
"validation",
"validate",
"sanitization",
"sanitize",
"sanitisation",
"sanitise",
"assert",
"forms",
"form"
],
"workspaces": [
"packages/*"
],
"resolutions": {
"**/set-value": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-preset-react-union": "^0.15.2",
"cross-env": "^5.2.0",
"eslint": "5.15.0",
"eslint-config-react-union": "^0.15.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.16.0",
"husky": "1.3.1",
"invariant": "^2.2.4",
"jest": "^24.1.0",
"jsdoc-to-markdown": "^4.0.1",
"lerna": "2.2.0",
"lint-staged": "8.1.5",
"plop": "^2.4.0",
"prettier": "1.16.4",
"ramda": "^0.27.0",
"ramda-extension": "^0.10.2",
"rollup": "^1.32.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"serve": "^11.3.0"
},
"scripts": {
"publishAll": "yarn build && yarn lerna publish --access public --registry https://registry.npmjs.org/",
"test": "jest",
"test:watch": "jest --watch",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint --ext .js ./",
"build": "lerna exec -- rollup -c=../../rollup.config.js",
"prepublish": "yarn build && yarn generate:docs",
"generate:docs": "node scripts/generateDocs.js",
"generate:plop": "plop --plopfile ./.plop/plopfile.js",
"docs": "yarn serve -s ./docs"
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier --ignore-path .gitignore --write",
"yarn lint --fix",
"git add"
]
}
}
}