-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
101 lines (101 loc) · 3.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jedi-validate",
"version": "1.5.6",
"description": "A lightweight form validation component",
"main": "./dist/jedi-validate.js",
"scripts": {
"dev": "npm start",
"prestart": "rimraf ./dist",
"start": "webpack-dev-server --hot --inline --progress --colors --watch --port 4000",
"prebuild": "npm run esdoc && rimraf ./dist",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prettier:format": "prettier --write \"src/**/*.js\"",
"lint:fix-tests": "eslint __tests__/**/*.js --fix",
"preesdoc": "rimraf ./docs",
"esdoc": "esdoc -c esdoc.json",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "npm run test -- --coverage",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"stryker": "cross-env NODE_ENV=stryker stryker run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitriytat/jedi-validate.git"
},
"keywords": [
"form",
"validation",
"formdata"
],
"files": [
"src",
"dist"
],
"author": "Dmitriy Tatarintsev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmitriytat/jedi-validate/issues"
},
"homepage": "https://github.com/dmitriytat/jedi-validate#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@types/jest": "^23.3.10",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"compression-webpack-plugin": "^2.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"jest": "^23.6.0",
"json-loader": "^0.5.7",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"rimraf": "^2.6.2",
"stryker": "^0.33.2",
"stryker-api": "^0.22.1",
"stryker-babel-transpiler": "^0.7.11",
"stryker-html-reporter": "^0.16.10",
"stryker-javascript-mutator": "^0.12.2",
"stryker-jest-runner": "^1.2.10",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-sources": "1.3.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}