-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "@greenhousegames/firebase-waiting-room",
"version": "1.0.1",
"description": "Real-time waiting rooms using firebase",
"main": "dist/index.js",
"scripts": {
"prebuild": "eslint src/** && (rm -r dist || true) && mkdir dist",
"build": "babel src/ -d dist/",
"pretest": "npm run build",
"test": "mocha --require babel-register",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenhousegames/firebase-waiting-room.git"
},
"author": "Greenhouse Games, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenhousegames/firebase-waiting-room/issues"
},
"homepage": "https://github.com/greenhousegames/firebase-waiting-room#readme",
"dependencies": {
"firebase": "^3.3.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.7.0",
"mocha": "^3.0.2"
}
}