-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.12 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
{
"name": "node-phone-utils",
"version": "2.1.1",
"description": "Phone number utils library",
"main": "lib/index.js",
"scripts": {
"test": "cp .env.tpl .env && node_modules/.bin/mocha --recursive tests --ui=bdd --reporter=spec --timeout=5000 && rm .env",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha tests --recursive --timeout=50000 --exit",
"jshint": "node_modules/.bin/jshint --show-non-errors --exclude=coverage,node_modules,docs",
"docs": "node_modules/.bin/jsdoc -d docs -t ./node_modules/minami -r --readme README.md ./lib",
"prepare-release": "npm test && npm run jshint",
"publish-release": "git push && git push --tags && npm publish",
"patch-release": "npm run prepare-release && npm version patch && npm run publish-release",
"minor-release": "npm run prepare-release && npm version minor && npm run publish-release",
"major-release": "npm run prepare-release && npm version major && npm run publish-release"
},
"repository": {
"type": "git",
"url": "https://github.com/dial-once/node-phone-utils.git"
},
"keywords": [
"Dial-Once",
"Phone Number",
"Util",
"HLR lookup",
"Bulk lookup"
],
"author": "Dial Once",
"contributors": [
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-phone-utils/issues"
},
"homepage": "https://github.com/dial-once/node-phone-utils#readme",
"dependencies": {
"cache-manager": "^2.0.1",
"dotenv": "^2.0.0",
"google-libphonenumber": "^3.0.7",
"lodash": "^4.6.0",
"node-hlr-client": "^0.0.13",
"smsapicom": "^1.2.0",
"uuid": "^3.1.0"
},
"engine": "node >= 5.6.0",
"devDependencies": {
"api-error-handler": "^1.0.0",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-http": "^2.0.1",
"express": "^4.13.4",
"express-winston": "^1.3.0",
"nyc": "^13.0.1",
"jsdoc": "^3.4.0",
"jshint": "^2.9.1",
"minami": "^1.1.1",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"winston": "2.x"
}
}