-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "vulpix",
"version": "0.2.1",
"description": "CSP-like channels library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "npm test",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format:check": "prettier --check **/*",
"format:fix": "prettier --write **/*",
"ts:check": "tsc --noEmit",
"quality-checks": "npm run lint && npm run format:check && npm run ts:check && npm test"
},
"keywords": [
"channels",
"csp",
"waitgroup",
"workflow"
],
"author": "João Dias <https://github.com/hastyy>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hastyy/vulpix"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}