-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "validator.js-validate",
"version": "1.1.0",
"description": "Opinionated object validation function based on validator.js",
"homepage": "http://uphold.github.io/validator.js-validate",
"bugs": "https://github.com/uphold/validator.js-validate/issues",
"license": "MIT",
"author": "Uphold Inc.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/uphold/validator.js-validate.git"
},
"scripts": {
"build": "rm -rf dist && babel src -d dist",
"changelog": "github-changelog-generator --owner uphold --repo validator.js-validate --future-release=v$npm_package_version > CHANGELOG.md",
"cover": "yarn test -- --coverage",
"lint": "eslint --cache src test",
"release": "npm version $1 -m 'Release %s'",
"test": "NODE_ENV=test jest --config jest.json --env node",
"version": "yarn build && yarn changelog && git add dist CHANGELOG.md"
},
"dependencies": {
"lodash.isplainobject": "4.0.6",
"lodash.reduce": "4.6.0",
"validator.js": "2.0.3"
},
"devDependencies": {
"@uphold/github-changelog-generator": "0.4.1",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015-node": "4.0.2",
"eslint": "3.17.0",
"eslint-config-seegno": "8.0.1",
"jest": "19.0.2",
"pre-commit": "1.2.2"
},
"engines": {
"node": ">=4.0.0"
},
"pre-commit": [
"lint"
]
}