-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "csp-builder",
"version": "1.1.1",
"description": "A builder tool to help generate Content Security Policies in a type-safe way",
"repository": "pgilad/csp-builder",
"scripts": {
"format": "prettier --write '{src,__tests__}/**/*.ts'",
"lint": "tslint '{src,__tests__}/**/*.ts' --fix",
"pika-pack": "pika build",
"pika-publish": "pika publish",
"test": "jest",
"typecheck": "tsc --noEmit",
"verify": "npm run format && npm run lint && npm run typecheck",
"version": "npx @pika/pack"
},
"keywords": [
"content-security-policy",
"csp",
"builder",
"generator",
"web",
"security"
],
"author": "Gilad Peleg <[email protected]> (https://www.giladpeleg.com)",
"license": "MIT",
"engines": {
"node": ">=10"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**/*.ts"
],
"coverageReporters": [
"json",
"lcov",
"clover",
"text-summary"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*",
"lib/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.15",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}