-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "bycontract",
"description": "argument validation library based on JSDOC syntax",
"version": "2.0.11",
"author": "Dmitry Sheiko <[email protected]>",
"main": "dist/bycontract.dev.js",
"typings": "./dist/typings/bycontract.dev.d.ts",
"scripts": {
"test": "jest --config=jest.cfg.unit.js",
"build": "npm run build:module && npm run build:web",
"build:module": "tsc",
"build:web": "webpack"
},
"keywords": [
"validation",
"validate",
"argument validation",
"aproba",
"validatejs"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/jest": "^24.0.13",
"@types/node": "^12.12.7",
"jest": "^26.6.1",
"jest-cli": "^26.6.1",
"terser-webpack-plugin": "^5.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^5.2.0",
"webpack-cli": "^3.3.2"
},
"license": "MIT",
"maintainers": [
{
"name": "Dmitry Sheiko",
"email": "[email protected]",
"web": "http://dsheiko.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dsheiko/bycontract"
}
}