-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 KB
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
{
"name": "fa.js",
"version": "0.7.7",
"description": "FurAffinity interface for Javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/cheeplusplus/fa.js.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Kauko <kauko@biosynth.link>",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.json",
"test": "jest --setupFiles dotenv/config",
"test:coverage": "jest --setupFiles dotenv/config --coverage",
"test:coverage:ci": "jest --setupFiles dotenv/config --coverage --coverageReporters json-summary",
"format": "prettier --write tests/*.ts",
"format:check": "prettier --check tests/*.ts"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": ">=18.0.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@date-fns/tz": "^1.1.2",
"date-fns": "^4.1.0",
"scrape-it": "^6.1.3"
}
}