-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "messen",
"version": "1.0.0-beta.10",
"description": "A lightweight framework for building Facebook Messenger apps",
"main": "dist/messen.js",
"types": "dist/messen.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"start": "node index.js",
"build-ts": "tsc",
"publish-ts": "npm run build-ts && npm publish",
"dev": "npm run build-ts && npm start",
"test": "npm run build-ts && mocha -r ts-node/register test/**/*.test.ts",
"test-unit": "npm run build-ts && mocha -r ts-node/register test/unit/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomquirk/messen.git"
},
"author": "Tom Quirk <tomquirkacc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomquirk/messen/issues"
},
"homepage": "https://github.com/tomquirk/messen#readme",
"dependencies": {
"facebook-chat-api": "github:Schmavery/facebook-chat-api",
"mkdirp": "^0.5.1",
"prompt": "^1.0.0",
"readline": "^1.3.0",
"winston": "^3.1.0",
"dotenv": "^6.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/dotenv": "^6.1.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}