-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·95 lines (95 loc) · 2.82 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
89
90
91
92
93
94
95
{
"name": "coaching-chatbot",
"version": "0.0.1",
"description": "Facebook messenger bot for life coaching",
"main": "handler.js",
"directories": {
"doc": "doc",
"src": "src",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kehitysto/coaching-chatbot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kehitysto/coaching-chatbot/issues"
},
"homepage": "https://github.com/kehitysto/coaching-chatbot#readme",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"sourceMap": false
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"@types/sinon": "^2.3.6",
"awesome-typescript-loader": "^3.2.3",
"aws-sdk": "^2.9.0",
"chai": "3.5.0",
"chai-as-promised": "^6.0.0",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.11.16",
"cross-env": "^3.1.4",
"dotenv": "^4.0.0",
"dotenv-webpack": "^1.3.2",
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"inject-loader": "^3.0.0-beta4",
"istanbul-instrumenter-loader": "^1.2.0",
"js-sha3": "^0.6.1",
"jsdox": "^0.4.10",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "*",
"mocha-webpack": "^1.0.0-beta.1",
"mockery": "^2.0.0",
"node-wit": "^4.2.0",
"nodemon": "^1.12.1",
"nyc": "^10.1.2",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"serverless-webpack": "^3.0.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.4.11",
"ts-node": "^3.3.0",
"typescript": "^2.4.1",
"webpack": "^2.7.0",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"tests": "npm run test && npm run ft",
"test": "cross-env RUN_ENV=dev mocha-webpack src test/ut",
"test:watch": "cross-env RUN_ENV=dev npm run test -- --watch",
"ft": "cross-env RUN_ENV=dev mocha-webpack test/ft",
"ft:watch": "cross-env RUN_ENV=dev npm run ft -- --watch",
"lint": "eslint src",
"bot-client": "ts-node ./scripts/bot-client.js",
"bot-client:watch": "nodemon ./scripts/bot-client.js --exec ts-node",
"visualize": "ts-node ./scripts/visualize.js",
"demonize": "ts-node ./scripts/demonize.js",
"write-env": "node ./scripts/write-env.js",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run tests",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"ci": "npm run cover",
"validate": "npm ls",
"doc": "npm run doc:framework",
"doc:framework": "jsdox --output ./doc/apidoc ./src/chatbot"
},
"pre-commit": [
"lint",
"test",
"ft"
],
"dependencies": {
"precommit-hook-eslint": "^3.0.0"
}
}