-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
{
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"name": "golden-number",
"version": "1.0.1",
"description": "Golden ratio based number generator",
"scripts": {
"lint": "eslint \"src/**/*.{j,t}s?(x)\"",
"pretty": "pretty-quick",
"test": "run-s test:*",
"size": "size-limit",
"test:lint": "npm run lint",
"test:jest": "jest",
"build:void": ":",
"prepublishOnly": "run-s build:*",
"build:dts": "tsc -p d.tsconfig.json"
},
"author": "Alexey Komarov <[email protected]>",
"devDependencies": {
"@alex7kom/sayonara-config": "0.9.0",
"@size-limit/preset-small-lib": "^4.0.0",
"husky": "^4.2.1",
"size-limit": "^4.0.0"
},
"eslintConfig": {
"extends": [
"./node_modules/@alex7kom/sayonara-config/src/configs/eslint-universal.js",
"./node_modules/@alex7kom/sayonara-config/src/configs/eslint-jest-overrides.js"
],
"rules": {
"strict": "off"
},
"overrides": []
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/alex7kom/golden-number.git"
},
"sayonaraConfig": {
"sets": [
"npm-package",
"universal-library",
"ts-ready"
]
},
"size-limit": [
{
"path": "src/index.js"
}
],
"eslintIgnore": [
"src/**/*.d.ts"
]
}