-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@nimiq/utils",
"version": "0.12.0",
"description": "Nimiq Util Classes",
"repository": "[email protected]:nimiq/nimiq-utils.git",
"author": "Nimiq (https://www.nimiq.com)",
"license": "Apache-2.0",
"main": "dist/nomodule/main.js",
"module": "dist/module/main.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint src/**/*.ts tests/*.spec.ts",
"test": "jest",
"build": "yarn lint && rimraf build dist && tsc && rollup -c",
"pr": "yarn test && yarn build"
},
"files": [
"dist",
"types"
],
"dependencies": {
"big-integer": "^1.6.44"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^2.6.3",
"rollup": "^4.9.6",
"ts-jest": "^29.1.2",
"typescript": "^4.3.0"
}
}