-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 3 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
77
{
"name": "@sandworm/guard",
"version": "2.0.0",
"description": "Easy auditing & sandboxing for your JavaScript dependencies 🪱",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sandworm-hq/sandworm-guard-js.git"
},
"scripts": {
"dev": "webpack --watch --progress",
"build": "webpack",
"lint": "yarn eslint ./src/ ./tests/ ./scripts/ ./cli/",
"test-node-unit": "jest --noStackTrace --config=tests/configs/jest.unit.node.config.js",
"test-jsdom-unit": "jest --noStackTrace --config=tests/configs/jest.unit.jsdom.config.js",
"test-unit": "yarn test-node-unit && yarn test-jsdom-unit",
"test-node-capture": "yarn prepare-build-for-testing && jest --noStackTrace --config=tests/configs/jest.capture.config.js",
"test-node-enforce": "yarn prepare-build-for-testing && jest --noStackTrace --config=tests/configs/jest.enforce.config.js",
"test-web-capture": "yarn prepare-build-for-testing && npx playwright test --config=tests/configs/playwright.config.js",
"test-web-all": "yarn test-web-capture && yarn test-jsdom-unit",
"test-node-ce": "yarn test-node-enforce && yarn test-node-capture",
"test-node-all": "yarn test-node-ce && yarn test-node-unit",
"test-all": "yarn test-node-all && yarn test-web-all",
"build-library-md": "node scripts/build-library-md.js",
"build-library-min": "node scripts/build-library-min.js",
"build-library": "yarn build-library-md && yarn build-library-min",
"prepare-build-for-testing": "if [ ! -d \"dist/node_modules/@sandworm/audit\" ]; then mkdir -p dist/node_modules/@sandworm/audit && cd dist/node_modules/@sandworm/audit && ln ../../../index.js index.js && cd ../../../../; fi",
"prepare": "husky install"
},
"bin": "cli/index.js",
"author": "Sandworm <dev@sandworm.dev>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@playwright/test": "^1.23.4",
"@types/jest": "^28.1.6",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-junit": "^14.0.0",
"playwright-watch": "^1.3.23",
"prettier": "^2.7.1",
"sandworm-jest": "^1.5.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"source-map-js": "1.0.2"
},
"keywords": [
"security",
"audit",
"dependencies",
"supply-chain",
"sandbox",
"harden",
"ses",
"compartments"
],
"homepage": "https://sandworm.dev"
}