-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "optimal",
"version": "3.2.1",
"description": "A system for building and validating defined object structures.",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "beemo create-config --silent",
"build": "beemo run-script build",
"coverage": "yarn run jest --coverage",
"eslint": "beemo eslint",
"jest": "beemo jest",
"prettier": "beemo prettier",
"prerelease": "yarn test && yarn run build",
"release": "npx np --yolo --no-yarn",
"pretest": "yarn run type",
"test": "yarn run jest",
"posttest": "yarn run eslint",
"type": "beemo typescript --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/milesj/optimal.git"
},
"keywords": [
"opts",
"options",
"builder",
"validator",
"config",
"defaults",
"object",
"params",
"struct"
],
"author": {
"name": "Miles Johnson",
"url": "http://milesj.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/milesj/optimal/issues"
},
"homepage": "https://github.com/milesj/optimal#readme",
"devDependencies": {
"@milesj/build-tools": "^0.60.5",
"@types/node": "^12.12.14",
"conventional-changelog-beemo": "^1.6.0"
},
"beemo": {
"module": "@milesj/build-tools",
"drivers": [
"babel",
"eslint",
"jest",
"prettier",
"typescript"
],
"eslint": {
"rules": {
"default-param-last": "off"
}
}
},
"browserslist": [
"ie 11"
],
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
}
}