-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "@node-loader/core",
"version": "2.0.0",
"description": "The base loader for configuring NodeJS loaders",
"type": "module",
"main": "lib/node-loader-core.js",
"scripts": {
"test": "node --experimental-loader ./lib/node-loader-core.js ./test/run-tests.js",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint lib test"
},
"engines": {
"node": ">=13"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-loader/node-loader-core.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-loader/node-loader-core/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/node-loader/node-loader-core#readme",
"devDependencies": {
"@types/mocha": "^8.0.0",
"eslint": "^7.5.0",
"eslint-config-node-important-stuff": "^1.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}