-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
{
"name": "@jupiterone/security-policy-builder",
"version": "4.2.0",
"description": "Configurable compilation of policies, standards, and procedures documentation.",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/security-policy-builder"
},
"license": "UNLICENSED",
"author": "JupiterOne <hello@jupiterone.io>",
"keywords": [
"security",
"documentation",
"compiler"
],
"main": "dist/index.js",
"bin": {
"psp": "bin/psp"
},
"scripts": {
"compile": "yarn ttsc --declaration -p tsconfig.dist.json && cp -R ./bin ./dist/",
"build": "yarn compile && cp -R LICENSE *.md static yarn.lock package.json ./dist/ && (cd ./dist && yarn install --production)",
"bundle": "yarn build && echo '' > ./dist/bin/devInit.js",
"clean": "rm -rf -- *.log *.zip",
"format-code": "yarn rewrite-imports --dir . && prettier --write '**/*.{js,ts,md,json}'",
"lint": "eslint --ext .ts,.js .",
"test": "yarn jest .",
"local-publish": "export $(grep -v '^#' .env | xargs); ./bin/psp publish -n -c ./config.json -t ./templates -a $J1_ACCOUNT_ID -k $J1_API_TOKEN",
"publish:patch": "yarn version --patch",
"publish:minor": "yarn version --minor",
"publish:major": "yarn version --major"
},
"dependencies": {
"@jupiterone/security-policy-templates": "^2.9.0",
"@lifeomic/attempt": "^3.0.0",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"file-set": "^4.0.1",
"fs-extra": "^9.0.1",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"inquirer": "^8.2.0",
"joi": "^17.2.1",
"moment": "^2.27.0",
"mustache": "^4.0.1",
"node-fetch": "^2.6.1",
"p-all": "^3.0.0",
"p-map": "^4.0.0",
"pluralize": "^8.0.0",
"progress": "^2.0.3",
"showdown": "^1.9.1",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@jupiterone/typescript-tools": "^15.0.0",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.1",
"@types/mustache": "^4.0.1",
"@types/nock": "^11.1.0",
"@types/node-fetch": "^2.5.7",
"@types/pluralize": "^0.0.29",
"@types/progress": "^2.0.3",
"@types/showdown": "^1.9.3",
"nock": "^13.0.4",
"require-self-ref": "^2.0.1",
"ts-node": "^9.0.0",
"ttypescript": "^1.5.15",
"type-fest": "^1.1.3"
}
}