-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "input-plugin-telephone",
"keyword": "punchcard-cms",
"version": "0.0.0",
"description": "Simple input plugin for a telephone number",
"main": "index.js",
"scripts": {
"test": "npm run nyc",
"pretest": "npm run lint",
"ava": "ava | tap-diff",
"ava:watch": "ava --watch | tap-diff",
"nyc": "nyc --all npm run ava",
"lint": "eslint index.js lib && eslint -c ./.eslintrc-ava.yml tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"reparo": "reparo -b master"
},
"repository": {
"type": "git",
"url": "https://github.com/punchcard-cms/input-plugin-telephone.git"
},
"contributors": [
"Rachel White <whiter@us.ibm.com>"
],
"license": "Apache-2.0",
"dependencies": {
"validator": "^5.7.0"
},
"devDependencies": {
"ava": "^0.14.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"eslint-config-punchcard": "^1.0.1",
"ghooks": "^1.3.2",
"nyc": "^6.6.1",
"punchcard-commit-msg": "^1.0.0",
"punchcard-semantic-release": "^2.0.1",
"punchcard-shared-tests": "^1.0.1",
"reparo": "^1.1.1-0",
"semantic-release": "^4.3.5",
"tap-diff": "^0.1.1"
},
"engines": {
"node": "^6"
},
"keywords": [
"input-plugin",
"punchcard-cms"
],
"nyc": {
"exclude": [
"tests/**/*"
]
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": true,
"tap": true
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
}
}