-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "bitchan-web",
"version": "0.0.2",
"description": "Browser bitchan client",
"scripts": {
"build-dev": "rm -rf dist && webpack",
"build-release": "rm -rf dist && NODE_ENV=production webpack",
"prepublish": "bower install && npm run build-release",
"start": "webpack-dev-server --port 28444 --history-api-fallback --colors",
"test": "mocha && jsxhint --es6module .",
"j": "jsxhint --es6module ."
},
"repository": {
"type": "git",
"url": "https://github.com/bitchan/bitchan-web.git"
},
"keywords": [
"bitchan"
],
"author": "Kagami Hiiragi",
"license": "CC0",
"bugs": {
"url": "https://github.com/bitchan/bitchan-web/issues"
},
"homepage": "https://github.com/bitchan/bitchan-web",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-loader": "^5.1.3",
"bower": "^1.3.12",
"chai": "*",
"dexie": "^1.0.3",
"file-loader": "^0.8.1",
"flux": "^2.0.1",
"html-webpack-plugin": "^1.1.0",
"jsxhint": "*",
"mocha": "*",
"react": "^0.13.0",
"sass-loader": "^0.3.1",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6"
}
}