generated from supercharge/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@supercharge/numbers",
"description": "Extended Number utilities for Node.js and JavaScript",
"version": "3.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/numbers/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "~26.0.20",
"@typescript-eslint/eslint-plugin": "~4.14.2",
"eslint": "~7.19.0",
"eslint-config-standard": "~16.0.2",
"eslint-config-standard-with-typescript": "~20.0.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "~4.1.0",
"jest": "~26.6.3",
"typescript": "~4.1.3"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/numbers",
"keywords": [
"number",
"numbers",
"utilities",
"nodejs",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "dist",
"types": "dist",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/numbers.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "jest"
}
}