-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "easy-errors",
"version": "1.1.2",
"description": "This is a package for validating an object for presence of mandatory attributes. It also provides some errors you can use.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --copy-files --out-dir dist",
"deploy": "git flow release start $npm_package_version && git flow release finish -m \"$npm_package_version\" $npm_package_version && npm publish && git push origin master",
"prepublish": "npm run build",
"prelink": "npm run build",
"lint": "eslint --max-warnings=0 .",
"patch": "npm --no-git-tag-version version patch",
"postpatch": "git add package.json && git commit -m \"Bump version patch number\" package*",
"test": "mocha --recursive src/test"
},
"keywords": [
"easy",
"error",
"validation",
"validator"
],
"author": "Stefan Neidig <[email protected]>",
"license": "ISC",
"dependencies": {
"super-error": "^2.2.1",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint-config-nanogiants": "^1.0.10",
"faker": "^4.1.0",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"sinon": "^7.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/nanogiants/easy-errors"
}
}