-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"version": "1.2.0",
"name": "uniter-loader",
"description": "Uniter-Loader - Webpack loader for requiring PHP files from JavaScript with Uniter",
"keywords": [
"uniter",
"php",
"webpack",
"loader"
],
"homepage": "https://github.com/uniter/loader",
"author": "Dan Phillimore <dan@ovms.co> (https://github.com/asmblah)",
"repository": {
"type": "git",
"url": "https://github.com/uniter/loader"
},
"bugs": {
"email": "dan@ovms.co",
"url": "https://github.com/uniter/loader/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"MIT-LICENSE.txt",
"README.md"
],
"scripts": {
"build": "npm run lint:check && tsc -p src",
"jest": "jest '/test/.*\\.test\\.ts$'",
"lint:check": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prepublishOnly": "npm run build",
"test": "npm run lint:check && npm run jest"
},
"dependencies": {
"phpify": "^6.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.0",
"@types/jest": "^29.5.14",
"@types/jest-sinon": "^1.0.5",
"@types/node": "^22.14.1",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"buildbelt": "^0.3.0",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"jest-sinon": "^1.1.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-sinon": "^2.0.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=8"
},
"license": "MIT"
}