-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.66 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
85
86
87
88
{
"name": "@frankast/sms-sender",
"main": "lib/index.js",
"version": "0.0.0-semantically-released",
"description": "This is a wrapper for AWS.SNS & SMSC API in Node.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/FrankAst/sms-sender.git"
},
"keywords": [
"sms",
"sms-sender",
"smsc",
"aws-sms",
"aws-sns",
"aws",
"smsc-sender"
],
"bugs": {
"url": "https://github.com/FrankAst/sms-sender/issues"
},
"homepage": "https://github.com/FrankAst/sms-sender",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"isomorphic-fetch": "^2.2.1",
"mongoose": "^5.0.4",
"babel-runtime": "^6.26.0"
},
"optionalDependencies": {
"aws-sdk": "^2.211.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "22.4.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.13.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"fetch-mock": "^6.0.0",
"flow-bin": "^0.70.0",
"jest": "22.4.3",
"mongodb-memory-server": "^1.6.5",
"nodemon": "^1.15.1",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.0.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"roots": [
"<rootDir>/src"
]
},
"scripts": {
"demo-with-mongoose": "./node_modules/.bin/babel-node ./examples/with_mongoose/index.js",
"demo-by-regexp": "./node_modules/.bin/babel-node ./examples/by_regexp/index.js",
"demo-retry-another": "./node_modules/.bin/babel-node ./examples/retry_another/index.js",
"build": "npm run build-cjs && npm run build-flow",
"build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__,__fixtures__ -d lib",
"build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint --ext .js ./src",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow",
"semantic-release": "semantic-release"
}
}