-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "@hugomods/jsend",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/hugomods/jsend.git"
},
"author": "Razon Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugomods/jsend/issues"
},
"homepage": "https://github.com/hugomods/jsend",
"main": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist/index.d.ts"
],
"prepublish": "tsc",
"devDependencies": {
"@hugomods/eslint-config": "^0.1.2",
"@hugomods/prettier-config": "^0.2.0",
"@hugomods/stylelint-config": "^0.1.1",
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"scripts": {
"build": "tsc",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:prettier:fix && npm run lint:eslint:fix",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . -w",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style:fix": "stylelint \"**/*.scss\" --fix",
"test": "jest"
},
"prettier": "@hugomods/prettier-config"
}