-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "@rootstrap/validate",
"version": "1.0.0",
"description": "An extension of validate.js with useful and common custom validations",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "rollup -c",
"prepare": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootstrap/validate.git"
},
"keywords": [
"validate.js",
"js",
"react",
"react-native",
"validations",
"rootstrap"
],
"author": "Agustina Chaer",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootstrap/validate/issues"
},
"homepage": "https://github.com/rootstrap/validate#readme",
"dependencies": {
"lodash": "4.17.20",
"validate.js": "^0.13.1"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"rollup": "^2.26.10"
},
"peerDependencies": {
"lodash": "4.17.20"
}
}