-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.56 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
{
"name": "learn-phonetic-google-assistant",
"private": true,
"version": "0.0.0",
"description": "Google Assistant skill to aid in learning the phonetic alphabet",
"main": "dist/index.js",
"repository": "https://github.com/scottrangerio/learn-phonetic-google-assistant",
"author": "scott ranger <millenniumnight@googlemail.com>",
"license": "MIT",
"devDependencies": {
"@google-cloud/functions-emulator": "^1.0.0-alpha.19",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-jest": "^20.0.3",
"flow-bin": "^0.46.0",
"jest": "^20.0.3",
"ngrok": "^2.2.9",
"nodemon": "^1.11.0",
"prettier": "^1.3.1",
"rimraf": "^2.6.1"
},
"scripts": {
"babel": "babel src/ -d dist/ --ignore __mocks__,__tests__",
"transpile": "npm run clean && npm run babel",
"flow": "flow",
"test": "jest",
"lint": "eslint src",
"clean": "rimraf dist",
"prettier": "prettier --single-quote 'src/**/*.js' --write",
"build": "npm run prettier && npm run lint && npm run flow && npm run test && npm run transpile",
"functions:start": "functions start",
"functions:deploy": "functions deploy application --trigger-http",
"logs:read": "functions logs read",
"logs:clear": "functions logs clear",
"ngrok": "ngrok http",
"nodemon": "nodemon --watch src/ --exec npm run transpile"
},
"dependencies": {
"actions-on-google": "^1.1.0"
}
}