-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "@hckrnews/normalizer",
"description": "Normalizer objects",
"version": "0.3.3",
"author": {
"name": "Pieter Wigboldus",
"url": "https://hckr.news/"
},
"license": "MIT",
"scripts": {
"lint": "eslint src/*.js --config .eslintrc",
"lint:report": "eslint src/*.js --config .eslintrc -f json -o report.json",
"lint:fix": "eslint src/*.js --config .eslintrc --fix",
"test": "jest",
"test:watch": "jest src --watch",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --production"
},
"type": "module",
"files": [
"src/normalizer.js"
],
"main": "src/normalizer.js",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.12.11",
"@hckrnews/eslint-config": "^3.0.0",
"@jest/globals": "^29.0.0",
"babel-jest": "^29.0.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.0.0",
"esm": "^3.2.25",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"jscpd": "^4.0.0",
"prettier": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hckrnews/normalizer"
},
"engines": {
"node": ">= 18"
},
"keywords": [
"normalizer"
],
"dependencies": {
"@trojs/objects": "^9.0.0"
}
}