-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 747 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 747 Bytes
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
{
"name": "typed-object-validator",
"version": "1.0.7",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Stijn Rogiest",
"license": "MIT",
"repository": "CodeStix/typed-object-validator",
"keywords": [
"validation",
"typescript",
"typed validation",
"form validation"
],
"scripts": {
"start": "microbundle --no-compress --format cjs --watch",
"build": "microbundle --no-compress --format cjs",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}