-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1010 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
{
"name": "last-validator",
"version": "2.0.0-beta.0",
"description": "Asynchronous validation tool",
"type": "commonjs",
"license": "MIT",
"repository": "https://github.com/greegus/last-validator",
"author": "Matúš Duchoň <matus.duchon@gmail.com>",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc && yarn test",
"prepublish": "yarn build",
"lint": "eslint --ext .ts, --ignore-path .gitignore ./src",
"test": "jest tests"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^27.5.1",
"typescript": "^4.6.3"
}
}