-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "preset-sails",
"version": "1.0.2",
"description": "Bundled with opinionated plugins and reporters for Sails",
"main": "index.js",
"scripts": {
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"keywords": [
"sails",
"preset-sails",
"preset"
],
"author": "Kelvin Omereshone Oghenerhoro <[email protected]>",
"license": "MIT",
"dependencies": {
"@japa/api-client": "^1.4.4",
"@japa/assert": "^1.4.1",
"@japa/browser-client": "^1.2.0",
"@japa/run-failed-tests": "^1.1.1",
"@japa/spec-reporter": "^1.3.3"
},
"peerDependencies": {
"@japa/runner": "^2.5.1",
"sails": "^1.5.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}