-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "@lincworld/json-bigint",
"version": "1.0.0",
"description": "JSON parser that exclusively uses BigInt",
"main": "dist/index.js",
"dependencies": {
"lossless-json": "^1.0.3"
},
"devDependencies": {
"@lincworld/eslint-config": "git+https://github.com/LincWorld/eslint-config.git",
"@types/node": "^12.7.2",
"rimraf": "^3.0.0",
"typescript": "^3.5.3"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com/"
},
"scripts": {
"build": "rimraf dist && tsc",
"publish": "npm publish && npm publish --\"@lincworld:registry=https://registry.npmjs.org\" --access=public"
},
"eslintConfig": {
"extends": "@lincworld",
"parserOptions": {
"sourceType": "module"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/LincWorld/json-bigint.git"
},
"author": "Brahma Dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/LincWorld/json-bigint/issues"
},
"homepage": "https://github.com/LincWorld/json-bigint#readme"
}