-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
48
49
50
51
52
53
54
{
"name": "PoS-Bot",
"version": "0.0.1",
"description": "A Pokémon Showdown bot",
"license": "BSD-3-Clause",
"author": {
"name": "Ben Davies"
},
"contributors": [
{
"name": "Howell Li"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Morfent/PoS-Bot.git"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"prestart": "gulp build",
"start": "node ./dist/app.js",
"test": "gulp test"
},
"dependencies": {
"immutable": "^3.8.1",
"sockjs-client": "^1.1.1",
"sqlite3": "^3.1.4"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-async-functions": "^6.8.0",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-stage-1": "^6.13.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-build": "^0.5.3",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"regenerator": "^0.8.46",
"regenerator-runtime": "^0.9.5",
"runtime": "^0.13.0"
}
}