-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 936 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
{
"name": "d2i-reader",
"version": "0.3.0",
"description": "Simple TypeScript Dofus d2i file reader",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"dofus",
"parser",
"d2i",
"reverse",
"engineer"
],
"author": "Burlet Mederic <mederic.burlet@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@argus-inc/fluct": "https://github.com/argus-inc/fluct",
"@types/node": "^15.0.2"
},
"files": [
"lib/**/*"
],
"scripts": {
"dev": "nodemon src/index.ts --ignore \"test.json\"",
"start": "ts-node src/index.ts",
"prepare": "yarn build",
"version": "git add -A src",
"postversion": "git push & git push --tags",
"test": "jest --runInBand --config jestconfig.json",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}