forked from developit/hn_minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "hn_minimal-preact",
"version": "1.0.0",
"description": "Minimal hacker news client written in Preact.",
"scripts": {
"start": "node server.js",
"build": "mkdir -p dist && cp index.html dist && cp -r ./css dist && webpack -p",
"test": "npm run -s lint",
"lint": "eslint src",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/developit/hn_minimal-preact.git"
},
"keywords": [
"preact",
"hackernews"
],
"authors": [
"Dan Bartlett (http://github.com/danbartlett)",
"Jason Miller <[email protected]> (http://github.com/developit)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/developit/hn_minimal-preact/issues"
},
"homepage": "https://github.com/developit/hn_minimal-preact",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"eslint": "^3.2.2",
"gh-pages": "^0.11.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"preact": "^5.6.0"
}
}