-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 926 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
{
"name": "setfp",
"version": "0.0.1",
"main": "build/index.js",
"author": "nicholasjpaterno <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/nicholasjpaterno/setfp/blob/master/README.md",
"repository": "https://github.com/nicholasjpaterno/setfp/",
"keywords": [
"Set Object",
"filter",
"reduce",
"map",
"every",
"some",
"toArray",
"functional"
],
"scripts": {
"build": "tsc",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"start": "node build/index.js"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true
}