-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.72 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
54
55
56
57
58
59
60
61
62
63
{
"name": "main-fns",
"version": "1.4.5",
"description": "Javascript utility library created with TypeScript",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "nabby27",
"keywords": [
"fns",
"functions",
"javascript",
"js",
"libraries",
"libs",
"ts",
"typescript",
"utilities",
"utils"
],
"license": "MIT",
"private": false,
"sideEffects": false,
"homepage": "https://nabby27.github.io/main-fns/",
"repository": {
"type": "git",
"url": "https://github.com/nabby27/main-fns"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"docs": "jsdoc -c jsdoc.json -r",
"lint:check": "npx eslint './src/**'",
"lint:fix": "npx eslint './src/**' --fix",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"version:patch": "npm run lint:check && npm run test && npm run build && npm run docs && npm version patch",
"version:minor": "npm run lint:check && npm run test && npm run build && npm run docs && npm version minor",
"version:major": "npm run lint:check && npm run test && npm run build && npm run docs && npm version major"
},
"files": [
"dist",
"package.json"
],
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^12.20.24",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"better-docs": "^2.3.2",
"braintree-jsdoc-template": "^3.3.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"jsdoc": "^3.6.7",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3"
}
}