-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
54
55
56
57
58
59
{
"name": "@randlabs/json-bigint",
"version": "1.1.1",
"description": "JSON library with BigInt support",
"main": "build/index.js",
"types": "build/index.d.ts",
"browser": "dist/json-bigint.min.js",
"files": [
"build",
"dist",
"src/**/*.ts"
],
"scripts": {
"build": "npm run build:node && npm run build:web",
"build:web": "rimraf dist && webpack",
"build:node": "rimraf build && cross-env WEBPACK_TARGET=node webpack",
"prepack": "npm run build",
"test": "npm run build && node ./node_modules/ava/cli.js --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/randlabs/json-bigint.git"
},
"keywords": [
"json",
"bigint",
"bignumber"
],
"author": "RandLabs IO",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/randlabs/json-bigint/issues"
},
"ava": {
"files": [
"test/index.js"
]
},
"homepage": "https://github.com/randlabs/json-bigint#readme.md",
"devDependencies": {
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"ava": "^3.13.0",
"bignumber.js": "^9.0.1",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^5.9.0",
"eslint": "^7.10.0",
"eslint-plugin-html": "^6.1.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.0.0",
"ts-loader-declaration-export-plugin": "^1.0.2",
"tslib": "^2.2.0",
"typescript": "^4.0.3",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
}
}