-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
45
46
47
{
"name": "kismet-parser",
"version": "0.0.2",
"description": "Dice roll parser with (optional) personality",
"homepage": "https://github.com/autochthe/kismet-js",
"repository": "git+https://github.com/autochthe/kismet-js.git",
"keywords": [
"parser",
"dice-roller"
],
"author": "Mara Kim <[email protected]> (https://github.com/autochthe)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/autochthe/kismet-js/issues"
},
"scripts": {
"prepublish": "webpack",
"start": "node index.js",
"build": "webpack",
"build:debug": "webpack --debug",
"test": "webpack"
},
"bin": {
"kismet": "./kismet"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.5",
"jStat": "^1.5.2",
"jison": "^0.4.17",
"node-sass": "^3.7.0",
"react": "^15.1.0",
"react-console-component": "^0.1.1",
"react-dom": "^15.1.0",
"readline": "^1.3.0",
"sass-loader": "^3.2.0",
"webpack": "^1.13.0"
},
"dependencies": {
"express": "^4.13.4"
}
}