-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "node-seed",
"version": "1.0.0",
"description": "",
"license": "ISC",
"scripts": {
"check:node": "check-node-version --package",
"ci": "yarn run lint:js && yarn run test",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"format:js": "prettier --write \"{src,test}/**/*.js\"",
"postinstall": "yarn run check:node",
"lint": "yarn run lint:js",
"lint:js": "eslint ./src ./test --ext=js",
"lint:js:without:prettier": "yarn run lint:js -- --rule 'prettier/prettier: 0'",
"lint:watch": "nodemon --watch src --exec \"yarn run lint:without:prettier\"",
"lint:without:prettier": "yarn run lint:js:without:prettier",
"start": "node --es-module-specifier-resolution=node src/index.js",
"start:built": "node build/index.js",
"start:debug": "node inspect --es-module-specifier-resolution=node src/index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "nodemon -w src -w test --exec 'yarn run test'"
},
"dependencies": {
"lodash": "^4.17.12"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"check-node-version": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^1.19.4",
"prettier": "^1.2.2",
"sort-package-json": "^1.15.0"
},
"engines": {
"node": ">= 15.5 < 16"
},
"engine-strict": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"prettier --write"
],
"package.json": [
"sort-package-json"
],
"*.js": "eslint --cache --fix"
},
"type": "module"
}