-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "typed-validation",
"version": "0.8.2",
"description": "Validate Objects Against TypeScript Interfaces",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && tsc --pretty --outDir ./dist/ || exit 0",
"watch": "npm run clean && tsc --pretty -w --outDir ./dist/",
"clean": "rm -rf ./dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npm run build && cp package.json dist/ && cp README.md dist/ && cp LICENSE dist/ && npm pack dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpascoe95/typed-validation.git"
},
"keywords": [
"typed",
"typescript",
"validate",
"validation",
"interface"
],
"author": "Charles Pascoe <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/cpascoe95/typed-validation/issues"
},
"homepage": "https://github.com/cpascoe95/typed-validation#readme",
"devDependencies": {
"typescript": "^2.9.2"
},
"dependencies": {}
}