-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 923 Bytes
/
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
{
"name": "df.ts",
"version": "0.0.2",
"description": "Classes and wrappers for DF data for use in node.js or the web",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DFOnline/df.ts.git"
},
"keywords": [
"mcdiamondfire",
"diamondfire"
],
"author": "GeorgeRNG",
"license": "ISC",
"bugs": {
"url": "https://github.com/DFOnline/df.ts/issues"
},
"homepage": "https://github.com/DFOnline/df.ts#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"files": [
"./lib",
"./src"
],
"dependencies": {
"class-transformer": "^0.5.1",
"reflect-metadata": "^0.1.13"
}
}