-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
{
"name": "@orda-io/orda-integer",
"version": "0.1.17",
"description": "Orda Integer: a TypeScript/Javascript library compatible with the integer types of other languages",
"scripts": {
"clean": "rimraf dist",
"test": "npx mocha --config ./mocharc.json -ui bdd ./test/**/*",
"lint": "eslint --ext .tsx,.ts --fix ./src ./test",
"prettier": "prettier --config .prettierrc.json --write ./src/**/*.{json,ts,tsx}",
"build:dev": "npm run clean && webpack --config=./webpack.dev.js --stats-all --profile --bail",
"build:prod": "npm run clean && webpack --config=./webpack.prod.js --stats-all --profile --bail",
"prePublish": "npm run build:prod && npm version patch -m \"npm publish tag %s\"",
"postPublish": "git push --tags"
},
"main": "dist/orda-integer.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/orda-io/orda-integer.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"typescript",
"typescript-library",
"integer",
"bigint",
"unsigned-integers",
"esnext",
"int64",
"int32",
"uint32",
"uint64",
"biginteger-library",
"typescript-integer",
"javascript-integer"
],
"author": "Orda Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/orda-io/orda-integer/issues"
},
"homepage": "https://github.com/orda-io/orda-integer#readme",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"chai": "^4.4.1",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"minimist": "^1.2.8",
"mocha": "^10.6.0",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1",
"ws": "^8.18.0"
}
}