-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "gcf-express-app",
"version": "0.0.5",
"description": "Run Express Apps on Google Cloud Functions",
"author": "Noless",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/noless/gcf-express-app.git"
},
"keywords": [
"express",
"express app",
"gcf",
"cloud functions",
"google cloud functions"
],
"scripts": {
"start": "babel-node --max-old-space-size=16384 index.js",
"build": "babel index.js --out-dir lib --ignore '**/*.test.js'",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"coverage": "npm test -- --coverage",
"coverage:watch": "npm test -- --watch --coverage",
"eslint": "eslint src/",
"prettier": "prettier --write index.js index.test.js src/**/*.js",
"prettier:circleci": "prettier --list-different index.js index.test.js src/**/*.js",
"flow": "flow",
"validate": "npm run flow && npm run eslint && npm run prettier && npm run coverage",
"precommit": "npm run build && git add lib/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.1",
"eslint": "^4.16.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-jest": "^21.3.2",
"flow-bin": "^0.64.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"jest-junit": "^3.4.1",
"prettier": "^1.10.2"
}
}