-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "pep440-utils",
"version": "0.1.0",
"description": "Utilties for working with PEP440 version strings",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"prettier": "prettier --write .",
"prepare": "npm run build"
},
"author": "Michael Stringer",
"license": "Apache-2.0",
"keywords": [
"version",
"compare",
"pep440"
],
"files": [
"src",
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
}
}