-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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": "cftools.js",
"version": "1.0.4",
"description": "JavaScript implementation for the CFTools Data API.",
"access": "public",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean": "npm run clean:dist && npm run clean:modules",
"dev": "npm run start:dev",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint src/**/*.ts --fix && npx eslint test/**/*.ts --fix",
"prebuild": "npm run clean:dist",
"build": "tsup",
"build:docs": "rimraf ./docs && typedoc",
"start": "node dist/index",
"start:dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"pretest": "npm run build",
"test": "ts-mocha test/**/*.spec.ts",
"test:dev": "ts-mocha test/**/*.spec.ts -w --watch-files '**/*.ts'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.188",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"dotenv": "^16.4.5",
"eslint": "^8.27.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"sinon": "^14.0.2",
"ts-mocha": "^10.0.0",
"ts-node-dev": "^2.0.0",
"tsup": "^8.3.5",
"type-fest": "^4.26.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Mirasaki-Development/cftools.js"
},
"keywords": [
"cftools",
"cftools-sdk",
"cftools-api",
"cftools-data-api",
"cftools-wrapper",
"api-wrapper"
],
"author": {
"name": "Mirasaki Development",
"email": "[email protected]",
"url": "https://mirasaki.dev"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Mirasaki-Development/cftools.js/issues"
},
"dependencies": {
"cache-manager": "^6.1.2",
"keyv": "^5.1.3",
"lru-cache": "^11.0.2"
}
}