-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.67 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
74
75
76
77
78
79
{
"name": "ow-my-class",
"version": "0.1.1",
"description": "Validate a plain object with a class and make it type-safe!",
"keywords": [
"ow",
"class",
"object",
"assert",
"assertion",
"is",
"validate",
"validation",
"transformation",
"serialization",
"deserialization",
"util"
],
"author": "Junyoung Choi <fluke8259@gmail.com>",
"homepage": "https://github.com/BoostIO/ow-my-class",
"license": "MIT",
"main": "dist",
"files": [
"dist/**/*",
"!dist/specs/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BoostIO/ow-my-class.git"
},
"scripts": {
"build": "rimraf dist && tsc",
"lint": "prettier --check src/**/*.ts examples/*/src/**/*.ts",
"format": "prettier --write src/**/*.ts examples/*/src/**/*.ts",
"test": "ava --verbose",
"test-ci": "nyc ava && nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"bugs": {
"url": "https://github.com/BoostIO/ow-my-class/issues"
},
"devDependencies": {
"ava": "^1.4.1",
"codecov": "^3.5.0",
"nyc": "^14.1.1",
"ow": "^0.13.2",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"dependencies": {
"type-fest": "^0.5.2"
},
"peerDependencies": {
"ow": "^0.13.2"
},
"ava": {
"compileEnhancements": false,
"files": [
"src/specs/*"
],
"sources": [
"src/**/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
]
}
}