-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.59 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
{
"name": "validate-this",
"version": "1.5.2",
"description": "Easily validate deep form structures using both premade and custom validation rules.",
"main": "lib/index.js",
"scripts": {
"spec-coverage": "jest --collect-coverage",
"lint": "eslint ./src/** ./spec/**/*",
"test": "npm run lint && npm run spec-coverage",
"compile": "pack build"
},
"author": "Sam Slotsky",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sslotsky/validate-this.git"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__spec/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"keywords": [
"form",
"forms",
"validation",
"validator",
"validate",
"extensible",
"extendable",
"custom",
"customizable"
],
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-stage-0": "^7.0.0",
"@pika/pack": "^0.3.7",
"@pika/plugin-build-node": "^0.7.1",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-standard-pkg": "^0.8.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.18.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2"
}
}