-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "taydash",
"version": "2.1.0",
"description": "Helpful utility functions",
"keywords": [
"utility functions",
"functional programming",
"functional",
"object iteration",
"object traversal"
],
"homepage": "https://github.com/taylorsweetman/taydash#readme",
"bugs": {
"url": "https://github.com/taylorsweetman/taydash/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/taylorsweetman/taydash.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc --noEmit",
"build": "tsc",
"lint": "eslint --max-warnings 0 'src/**/*.ts'",
"test": "jest --coverage",
"validate": "npm run lint && npm run compile && npm run test && npm audit",
"prep": "npm i && npm run build && npm run validate"
},
"author": "Taylor Sweetman",
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
}
}