-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 KB
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
{
"name": "functional-utils-eamon",
"version": "1.0.4",
"description": "utils for functional programing",
"main": "./dist/index.js",
"module": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js",
"require": "./dist/index.js"
}
},
"keywords": [
"javascript",
"functional",
"utils",
"functional-utils",
"typescript"
],
"repository": "https://github.com/eamon3481/functional-utils",
"author": {
"name": "eamon3481",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"npm": "npm login",
"deploy": "npm whoami && npm publish --access=public"
},
"typings": "./src/index.d.ts",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.18",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.32.0",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0",
"typescript": "^4.9.4"
}
}