-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.96 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
{
"name": "crowdstrike-falcon",
"version": "0.4.0",
"description": "CrowdStrike Falcon API library for browser and node",
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"cross-fetch": "^4.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-google": "^0.14.0",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.16.0"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"browser": "./dist/esbuild/browser.js",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -fr ./dist",
"build": "tsc",
"build:devel": "tsc -p ./tsconfig.devel.json",
"build:browser": "esbuild src/index.ts --bundle --minify --sourcemap=external --format=cjs --outfile=dist/esbuild/browser.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format:fix": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "npm run build",
"build:release": "npm run lint:fix && npm run format:fix && npm run clean && npm run build && npm run build:browser && npm pack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crowdstrike/falconjs.git"
},
"keywords": [
"CrowdStrike",
"Falcon",
"SDK"
],
"author": "CrowdStrike Solution Architecture",
"license": "MIT",
"bugs": {
"url": "https://github.com/crowdstrike/falconjs/issues"
},
"homepage": "https://github.com/crowdstrike/falconjs#readme",
"dependencies": {
"axios": "^1.7.9"
}
}