-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "form-schema-validation",
"version": "2.0.1",
"description": "Schema for form validation",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"repository": "https://github.com/rstgroup/form-schema-validation",
"homepage": "https://github.com/rstgroup/form-schema-validation",
"license": "MIT",
"scripts": {
"test": "jest && npm run lint",
"test:watch": "jest --watch",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && rm -rf ./dist && webpack -p --config webpack.config.js",
"prepublish": "npm run test && npm run build",
"coverage": "jest --coverage",
"coverage:report": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint -c .eslintrc.json src/*.js",
"lint:fix": "eslint --fix -c .eslintrc.json src/*.js"
},
"keywords": [
"schema",
"form",
"forms",
"object",
"validation",
"validation-schema",
"schema-validation",
"js-schema",
"object-validation",
"form-schema-validation"
],
"author": "Mariusz Przodała",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.7",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.9.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"jest": {
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"collectCoverage": true
}
}