-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "valify",
"version": "4.6.0",
"description": "Validates data to easy way in JavaScript.",
"main": "index.js",
"browser": "dist/valify.min.js",
"directories": {
"test": "test"
},
"scripts": {
"version:major": "webpack --env.major && npm run-script && version-to-tag.sh && npm publish",
"version:minor": "webpack --env.minor && npm run-script && version-to-tag.sh && npm publish",
"version:patch": "webpack --env.patch && npm run-script && version-to-tag.sh && npm publish",
"build": "webpack --progress",
"postversion": "npm publish && git push && git push --tags",
"test": "mocha test --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/valify.git"
},
"keywords": [
"validation",
"types",
"type",
"model",
"json",
"interface",
"assert",
"assertion",
"list",
"express",
"koa",
"struct",
"collection",
"error",
"array",
"data",
"validator",
"schema",
"checker",
"valid"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabioricali/valify/issues"
},
"homepage": "https://github.com/fabioricali/valify#readme",
"dependencies": {
"bejs": "^2.0.0",
"clone": "^2.1.1",
"defaulty": "^2.0.0",
"depreca": "^1.3.0",
"stereotype": "^1.0.1",
"string-template": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"mocha": "^4.0.1",
"unminified-webpack-plugin": "^1.4.2",
"webpack": "^3.10.0",
"webpack-auto-inject-version": "^1.0.0"
}
}