-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
84 lines (84 loc) · 2.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "aws-polly-voices",
"version": "0.0.0-development",
"description": "Helper module to get AWS polly voices in an idiomatic way",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"serve": "node dist/index.js",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"prebuild": "rimraf dist",
"build": "babel --copy-files src --out-dir dist --ignore *.test.js",
"semantic-release": "semantic-release",
"commit": "git-cz",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/chgasparoto/aws-polly-voices.git"
},
"keywords": [
"aws",
"polly"
],
"files": [
"dist",
"README.md"
],
"bugs": {
"url": "https://github.com/chgasparoto/aws-polly-voices/issues"
},
"homepage": "https://github.com/chgasparoto/aws-polly-voices#readme",
"author": "Cleber Gasparoto <chgasparoto@gmail.com> (https://github.com/chgasparoto)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-add-module-exports": "^1.0.2",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.4",
"jest": "^26.6.3",
"jest-extended": "^0.11.2",
"nodemon": "^2.0.7",
"rimraf": "^3.0.0",
"semantic-release": "^17.2.3",
"standard": "^14.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverageFrom": [
"src/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run lint"
}
}
}