This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "douki",
"version": "1.0.0",
"description": "Sync your Anilist anime list to MyAnimeList",
"main": "server.js",
"scripts": {
"start": "npm run build && node server.js",
"dev": "concurrently \"nodemon --inspect server.js\" \"npm run devbuild\"",
"exec": "node server.js --exec babel-node --presets es2015,stage-2",
"devtest": "jest --watch --runInBand",
"test": "jest --verbose --runInBand --bail --forceExit",
"coverage": "jest --coverage --runInBand --watch",
"build": "webpack",
"devbuild": "webpack --progress --watch"
},
"engines": {
"node": ">=7.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gilmoreg/douki.git"
},
"author": "Grayson Gilmore (gilmoreg@live.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/gilmoreg/douki/issues"
},
"homepage": "https://github.com/gilmoreg/douki#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-watch": "2.0.6",
"chai": "3.5.0",
"chai-http": "3.0.0",
"concurrently": "^3.5.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jquery": "1.2.0",
"fetch-mock": "5.10.0",
"jest": "20.0.1",
"node-mocks-http": "1.6.2",
"webpack": "2.5.1"
},
"dependencies": {
"body-parser": "1.17.1",
"btoa": "^1.1.2",
"compression": "1.6.2",
"cors": "2.8.3",
"dotenv": "4.0.0",
"express": "4.15.2",
"limiter": "1.1.0",
"node-fetch": "1.6.3",
"pug": "2.0.0-rc.1",
"xml2js": "0.4.17"
},
"babel": {
"presets": [
"es2015",
"stage-3"
]
}
}