-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.48 KB
/
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
48
49
50
51
52
53
{
"name": "pickleparser",
"version": "0.2.1",
"description": "A pure Javascript implemented parser for Python pickle format",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs --failAfterWarnings",
"build:watch": "npm run build -- --watch",
"build:package": "rm -rf dist && npm run build",
"test": "jest --collect-coverage",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepublishOnly": "npm run build:package"
},
"bin": {
"pickletojson": "bin/pickletojson.js",
"pickleparser": "bin/pickletojson.js"
},
"keywords": [
"pickle",
"parser",
"python",
"unpickling",
"pure-javascript",
"typescript",
"json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ewfian/pickleparser.git"
},
"author": "ewfian",
"license": "MIT",
"bugs": {
"url": "https://github.com/ewfian/pickleparser/issues"
},
"homepage": "https://github.com/ewfian/pickleparser#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}