-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
{
"name": "optimal",
"version": "2.0.0",
"description": "A system for building and validating defined object structures.",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"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": "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",
"dependencies": {
"@babel/runtime": "^7.3.1"
},
"devDependencies": {
"@milesj/build-tools": "^0.24.0"
},
"beemo": {
"module": "@milesj/build-tools",
"drivers": [
"babel",
"eslint",
"jest",
"prettier",
"typescript"
]
},
"browserslist": [
"ie 11"
]
}