-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 761 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 761 Bytes
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
{
"name": "pokedex",
"version": "1.1.0",
"description": "JavaScript encyclopedia of Pokemon.",
"homepage": "https://github.com/contolini/pokedex",
"author": {
"name": "Chris Contolini",
"email": "chris@contolini.com",
"url": "https://contolini.com"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"pokemon",
"pokedex"
],
"repository": "contolini/pokedex",
"scripts": {
"test": "mocha test",
"codecov": "istanbul cover node_modules/.bin/_mocha test && codecov",
"parse": "node scripts/parse-pokemon-data.js"
},
"license": "MIT",
"dependencies": {
"csvtojson": "^2.0.8"
},
"devDependencies": {
"codecov": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}