-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 961 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
43
44
45
46
47
{
"bin": "dist/index.js",
"main": "dist/index.js",
"name": "ts-marshal",
"version": "0.0.11",
"description": "Typescript library to deserialize Ruby Marshal-i-zed objects",
"author": {
"email": "dont-email@communityscriptproject.com",
"name": "Nuri Yuri"
},
"repository": {
"url": "https://github.com/NuriYuri/ts-marshal"
},
"scripts": {
"build": "tsc -d",
"test": "jest"
},
"keywords": [
"ruby",
"marshal",
"dump",
"load",
"typescript"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^16.11.7",
"jest": "^28.1.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"files": [
"index.d.ts",
"dist/*.js",
"dist/*.js.map",
"dist/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"lib/**/*",
"tsconfig.json"
]
}