forked from eisberg-labs/nextjs-node-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "pgml-nextjs-node-loader",
"version": "1.1.5",
"description": "Allows you to include native Node.js `.node` modules in your Next.js project",
"license": "MIT",
"author": {
"name": "PostgresML",
"email": "[email protected]",
"url": "https://postgresml.org"
},
"repository": {
"type": "git",
"url": "https://github.com/postgresml/pgml-nextjs-node-loader"
},
"main": "dist/cjs.js",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"start": "npm run build -- -w",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"commitlint": "commitlint --from=main",
"security": "npm audit --production",
"lint:prettier": "prettier --list-different .",
"lint:js": "eslint --cache .",
"lint": "npm-run-all -l -p \"lint:**\"",
"pretest:only": "cd test/fixtures/example && npm i",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage"
},
"files": [
"dist"
],
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"loader-utils": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-jest": "^27.5.1",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^27.5.1",
"lint-staged": "^10.5.4",
"memfs": "^3.4.13",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"webpack": "^5.75.0"
},
"keywords": [
"webpack",
"nextjs",
"loader",
"node.js",
"node-loader",
"native-modules"
]
}