-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) Β· 1.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) Β· 1.2 KB
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
{
"name": "firebase-hackernews",
"version": "2.11.0",
"description": "Hacker News APIs with firebase",
"license": "MIT",
"repository": "ragingwind/firebase-hackernews",
"author": {
"name": "ragingwind",
"email": "ragingwind@gmail.com",
"url": "ragingwind.me"
},
"engines": {
"node": ">=4"
},
"main": "./dist/firebase-hackernews",
"scripts": {
"test": "xo ./src/*.js && yarn dev && ava test.js",
"sw": "node examples/service-worker/server.js && webpack --watch",
"express": "node examples/express/server.js && webpack --watch",
"build": "webpack -p",
"dev": "webpack",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"firebase",
"hacker",
"news",
"hackernews",
"hnpwa"
],
"dependencies": {
"firebase": "^4.1.2"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"express": "^4.15.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"webpack": "^2.6.1",
"xo": "^0.18.2"
},
"xo": {
"semicolon": false,
"env": {
"browser": true
},
"globals": [
"window",
"performance",
"firebase"
]
}
}