-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "pokeman-wrapi",
"version": "0.1.0",
"description": "Wrapper for Pokéapi",
"homepage": "https://github.com/wrapi",
"main": "index.js",
"scripts": {
"test-mocha": "mocha ./test",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/wrapi/pokemon.git"
},
"keywords": [
"pokemon",
"wrapi",
"REST",
"API",
"api wrapper",
"pokemon-api",
"pokemon-web-api",
"pokemon wrapper"
],
"author": "wrapi",
"contributors": [
"N. Palani Kumanan"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/wrapi/pokemon/issues"
},
"dependencies": {
"wrapi": "^0.1.8"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"chai": "^3.4.1",
"cheerio": "^0.19.0",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"request": "^2.67.0"
}
}