-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "is-integeric",
"version": "0.2.6",
"description": "Lightweight test to see if a number is integer-ish.",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "rollup --config",
"prepare": "rollup --config",
"test": "MOCHA_FILE=test-results/test-results.xml mocha --reporter mocha-github-actions-reporter -r jsdom-global/register",
"lint": "eslint src",
"lint-fix": "eslint --fix src"
},
"author": "Todd Dukart <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.31.11",
"jsdom": "^20.0.3",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"mocha-github-actions-reporter": "^0.2.0",
"rollup": "^3.7.3",
"rollup-plugin-babel": "^4.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdukart/is-integeric.git"
},
"bugs": {
"url": "https://github.com/tdukart/is-integeric/issues"
},
"homepage": "https://github.com/tdukart/is-integeric#readme",
"dependencies": {}
}