-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "rdw-kenteken-check",
"version": "1.0.27",
"description": "rdw kentekencheck",
"exports": [
"./src/kenteken-check-nl-class.js",
"./src/kenteken-check-nl-class-ts.ts"
],
"types": "types/kenteken-check-nl-class-ts.d.ts",
"scripts": {
"test": "jest --verbose --coverage",
"eslint": "eslint src/*.js -c .eslintrc.json",
"tslint": "eslint src/*.ts -c .tslintrc.json",
"build": "npm run eslint && webpack --config webpack.config.js",
"build-ts": "npm run tslint && webpack --config webpack.ts.config.js",
"start": "webpack serve -c ./webpack.config.js",
"start-ts": "webpack serve -c ./webpack.ts.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/friedt/kenteken-check-NL-RDW.git"
},
"author": "Pepijn Friederichs",
"license": "MIT",
"bugs": {
"url": "https://github.com/friedt/kenteken-check-NL-RDW/issues"
},
"homepage": "https://github.com/friedt/kenteken-check-NL-RDW#readme",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@webpack-cli/serve": "^3.0.1",
"babel-jest": "^29.7.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.10.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"node-ts": "^6.1.3",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"webpack": "^5.91.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0"
}
}