-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.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
{
"name": "fb-messenger-es6",
"version": "1.2.4",
"description": "Facebook Messenger plaform library",
"main": "dist",
"scripts": {
"build": "babel src -s -D -d dist",
"clean": "rm -rf ./node_modules/.cache ./dist ./coverage ./.nyc_output",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"prepublish": "NODE_ENV=production npm run build",
"pretest": "npm run lint",
"test": "nyc babel-tape-runner $(find test -name \\*.test.js) | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShellMonkeys/fb-messenger-es6.git"
},
"keywords": [
"facebook",
"messenger"
],
"author": "ShellMonkeys",
"contributors": [
"Kira",
"David",
"Tuti"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ShellMonkeys/fb-messenger-es6/issues"
},
"homepage": "https://github.com/ShellMonkeys/fb-messenger-es6#readme",
"dependencies": {
"https-proxy-agent": "^1.0.0",
"moment": "^2.17.1",
"node-fetch": "^1.6.3",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.22.0",
"babel-tape-runner": "^2.0.1",
"coveralls": "^2.12.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"nyc": "^10.1.2",
"sinon": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-catch": "^1.0.6"
}
}