-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 950 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": "picklefriend",
"version": "1.0.6",
"description": "Typescript package compatible with python's pickle loads/dumps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"@types/deep-equal": "^1.0.1",
"deep-equal": "^2.0.5",
"mocha": "^10.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"scripts": {
"build": "npm install && tsc",
"test": "mocha --require ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaopfg/picklefriend.git"
},
"keywords": [
"pickle",
"typescript",
"python"
],
"author": "joaopfg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/joaopfg/picklefriend/issues"
},
"homepage": "https://github.com/joaopfg/picklefriend#readme"
}