-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "jovo-community-validators",
"version": "0.4.0",
"description": "Validators for Jovo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc ",
"lint": "tslint --project \"./tsconfig.json\"",
"test": "mocha -r ts-node/register ./test/spec/*.spec.ts",
"cover": "istanbul cover node_modules/mocha/bin/_mocha ./dist/test/spec/*.spec.js -- -R spec",
"ci": "npm run lint && npm run build && npm run cover",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jovo-community/jovo-community-validators.git"
},
"keywords": [
"jovo",
"validators"
],
"author": "Jovo Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/jovo-community/jovo-community-validators/issues"
},
"homepage": "https://github.com/jovo-community/jovo-community-validators#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/js-combinatorics": "^0.5.32",
"duration-iso-8601": "^1.1.0",
"jovo-core": "^3.0.16",
"js-combinatorics": "^0.5.5",
"profane-words": "^1.3.1"
}
}