-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@jvanderen1/compare-versions",
"version": "1.0.1",
"description": "Compare semver version strings to find greater, equal or lesser.",
"keywords": [
"semver",
"version",
"compare",
"browser",
"node"
],
"homepage": "https://github.com/jvanderen1/compare-versions#readme",
"bugs": {
"url": "https://github.com/jvanderen1/compare-versions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jvanderen1/compare-versions.git"
},
"license": "MIT",
"author": "<jvanderen1@gmail.com>",
"sideEffects": false,
"main": "dist/compare-versions.cjs",
"module": "dist/compare-versions.mjs",
"source": "src/index.ts",
"browser": "dist/compare-versions.umd.js",
"types": "dist/types.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "parcel build --no-source-maps",
"clean": "npm-run-all clean:* --parallel",
"clean:docs": "rimraf ./docs/",
"clean:dist": "rimraf ./dist/",
"clean:parcel-cache": "rimraf ./.parcel-cache/",
"clean:types": "tsc --build --clean",
"docs": "typedoc",
"lint": "eslint --cache --ignore-path .gitignore --ext .ts",
"lint:check": "pnpm run lint .",
"lint:fix": "pnpm run lint --fix .",
"prepare": "husky install",
"pretty": "prettier",
"pretty:check": "pnpm run pretty --check .",
"pretty:fix": "pnpm run pretty --write .",
"test": "npm-run-all test:*",
"test:types": "tsc --skipLibCheck --noEmit",
"test:unit": "jest --config jest.config.json"
},
"devDependencies": {
"@parcel/core": "2.12.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@swc/core": "1.4.16",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"npm-run-all2": "5.0.2",
"parcel": "2.12.0",
"prettier": "2.8.1",
"typedoc": "0.25.13",
"typescript": "5.4.5"
},
"volta": {
"node": "18.13.0"
}
}