-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "shakespearean-pokemon-description",
"version": "1.0.0",
"description": "Shakespearify Pokemon descriptions with this API",
"main": "server.js",
"dependencies": {
"@hapi/joi": "^16.1.7",
"body-parser": "~1.0.1",
"express": "~4.0.0",
"mongoose": "~3.6.13",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"scripts": {
"start": "babel-node server.js --presets es2015,stage-2",
"test": "npx ava 'tests/**/*.js'"
},
"author": "Genesis Self-Fordham",
"license": "UNLICENSED",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"sinon": "^6.1.5"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"exclude": [
"tests",
"lib"
]
},
"standard": {
"ignore": [
"lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GenesisSelf/pokemon-challenge.git"
},
"bugs": {
"url": "https://github.com/GenesisSelf/pokemon-challenge/issues"
},
"homepage": "https://github.com/GenesisSelf/pokemon-challenge#readme"
}