-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "firestore-security-tests",
"version": "1.4.0",
"description": "Setup and run tests to verify Firestore security rules",
"main": "lib/index.js",
"scripts": {
"test": "cross-env GOOGLE_APPLICATION_CREDENTIALS=./creds.json babel-node src/index.spec.js",
"start": "node lib/index.js",
"build": "babel src/ -d lib/",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write --single-quote ./src/**/*.js",
"preversion": "npm test && npm run build && git add -f lib",
"flow": "flow",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willhlaw/firestore-security-tests.git"
},
"keywords": [
"firestore",
"security",
"rules",
"test"
],
"author": "willhlaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/willhlaw/firestore-security-tests/issues"
},
"homepage": "https://github.com/willhlaw/firestore-security-tests#readme",
"dependencies": {
"googleapis": "^23.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.34",
"@babel/core": "^7.0.0-beta.34",
"@babel/node": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"@babel/preset-flow": "^7.0.0-beta.34",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cross-env": "^5.1.1",
"eslint": "^4.13.0",
"eslint-config-pretty-standard": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.61.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1"
}
}