-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 996 Bytes
/
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
{
"name": "form-validator-js",
"private": true,
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "Ruslan Gilmullin <mellonis@yandex.ru>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/preset-env": "^7.14.1",
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^26.0.23",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"rollup": "^2.47.0",
"rollup-plugin-terser": "^7.0.2"
}
}