-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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": "rfc1751.js",
"version": "1.0.0",
"description": "An implementation of RFC1751 convention in TypeScript / JavaScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"lint": "eslint 'src/**/*.ts'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmizg/rfc1751.js.git"
},
"author": "Vytautas Mizgiris <vmizgiris@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmizg/rfc1751.js/issues"
},
"homepage": "https://github.com/vmizg/rfc1751.js#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^39.8.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"rimraf": "^4.1.2"
}
}