-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "cftools-sdk",
"version": "3.5.0",
"description": "An easy to use JavaScript implementation to talk with the CFTools Cloud API from your JavaScript project.",
"repository": "github:FlorianSW/cftools-sdk",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/internal/version.ts",
"build": "rm -rf lib && tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"dotenv": "^16.0.2",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"got": "^11.8.5"
},
"files": [
"lib/**/*"
],
"keywords": [
"cftools",
"sdk"
],
"author": "Florian Schmidt",
"license": "MIT"
}