-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.14 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": "spellaphone",
"version": "1.0.7",
"description": "Convert phone numbers to English phrases",
"main": "index.js",
"browser": {
"./data.js": "min-data.js"
},
"jsdelivr": "spellaphone.js",
"scripts": {
"test": "mocha -t 5000",
"build": "browserify -r .:spellaphone > spellaphone.js",
"lint": "eslint .",
"posttest": "projectz compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allenluce/spellaphone.git"
},
"bin": {
"spellaphone": "cli.js"
},
"keywords": [
"phonespell",
"telephone",
"spellaphone"
],
"author": "Allen Luce",
"license": "ISC",
"bugs": {
"url": "https://github.com/allenluce/spellaphone/issues"
},
"homepage": "http://spellaphone.org",
"dependencies": {
"binary-search-bounds": "^2.0.4",
"stringify-object": "^3.3.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"browser-resolve": "^1.11.3",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-no-inferred-method-name": "^1.0.2",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-objects": "^1.1.1",
"eslint-plugin-optimize-regex": "^1.1.6",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^10.0.0",
"gittify": "^1.0.2",
"mocha": "^6.2.0",
"projectz": "^1.7.4"
},
"yargs": {
"parse-numbers": false
},
"browserify": {
"transform": [
"gittify"
]
},
"maintainers": [],
"contributors": [
"Doug Luce (https://github.com/dougluce)",
"Allen Luce (https://github.com/allenluce)"
],
"demo": "https://jsfiddle.net/allenluce/c49r5b4b/",
"browsers": true,
"badges": {
"list": [
"travisci",
"npmversion"]
}
}