-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 869 Bytes
/
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
{
"name": "@leptonite/parse-int-strict",
"version": "1.0.0",
"author": "Daniel Faber <mail@daniel-faber.de>",
"license": "MIT",
"description": "strict replacement for parseInt",
"main": "build/parseIntStrict.js",
"types": "build/parseIntStrict.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/leptonite/parse-int-strict.git"
},
"scripts": {
"build": "tsc -p .",
"test": "jest --no-cache --coverage"
},
"devDependencies": {
"@leptonite/eslint-config": "git+https://github.com/leptonite/eslint-config.git",
"@types/jest": "28.1.1",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"eslint": "8.17.0",
"eslint-plugin-only-warn": "1.0.3",
"jest": "28.1.1",
"ts-jest": "28.0.5",
"typescript": "4.7.3"
}
}