forked from imsun/gitment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "gitment",
"version": "0.0.3",
"description": "A comment system based on GitHub Issues",
"main": "./dist/gitment.js",
"author": {
"name": "Shiquan Sun",
"url": "https://github.com/imsun"
},
"keywords": [
"comment system",
"GitHub Issues"
],
"repository": {
"type": "git",
"url": "https://github.com/imsun/gitment"
},
"bugs": {
"url": "https://github.com/imsun/gitment/issues"
},
"homepage": "https://github.com/imsun/gitment",
"scripts": {
"build": "babel src --out-dir dist --ignore test.js --source-maps & cross-env NODE_ENV=production webpack --config webpack.config.js --progress --profile --colors",
"dev": "webpack-dev-server --config webpack.dev.config.js --host 0.0.0.0 --progress --profile --colors"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"cross-env": "^6.0.3",
"mobx": "^3.1.7"
},
"license": "MIT"
}