This repository was archived by the owner on Mar 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "@wunderflats/validator",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"test": "mocha lib --recursive",
"lint": "eslint lib test",
"pretest": "dependency-check package.json",
"precommit": "npm run lint && npm test",
"postpublish": "git checkout master && git push && git push --tags"
},
"author": "Wunderflats GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wunderflats/validator.git"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dependency-check": "^3.3.0",
"eslint": "^3.16.1",
"eslint-config-wunderflats": "^0.4.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"plop": "^1.5.0",
"sinon": "^7.3.2"
},
"dependencies": {
"async-q": "^0.3.1",
"bson-objectid": "^1.2.5",
"camelcase": "^5.3.1",
"country-data": "^0.0.31",
"flat": "git+https://github.com/wunderflats/flat.git",
"is-promise": "^2.1.0",
"toposort-class": "^1.0.1",
"validator": "^7.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}