-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "pokeapi-js-wrapper",
"version": "1.2.7",
"description": "An API wrapper for PokeAPI",
"main": "dist/index.js",
"module": "src/index.js",
"files": [
"dist/index.js",
"dist/pokeapi-js-wrapper-sw.js",
"src/*",
"index.d.ts"
],
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"clean": "rm -rf ./dist/*",
"doctoc": "doctoc .",
"test": "nyc --reporter=lcov mocha -r mock-local-storage -r source-map-support/register ./test/test.js --timeout 10000",
"prepublish": "npm run build",
"serve": "http-server ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PokeAPI/pokeapi-js-wrapper"
},
"keywords": [
"pokedex",
"pokemon",
"nintendo",
"promise",
"pokeapi",
"browser",
"cache"
],
"author": "Alessandro Pezzé <[email protected]> (https://github.com/Naramsim)",
"contributors": [],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/PokeAPI/pokeapi-js-wrapper/issues"
},
"homepage": "https://github.com/PokeAPI/pokeapi-js-wrapper#readme",
"types": "./index.d.ts",
"dependencies": {
"axios": "^1.7.9",
"localforage": "^1.10.0"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-things": "^0.2.0",
"copy-webpack-plugin": "^12.0.2",
"doctoc": "^2.2.1",
"http-server": "^14.1.1",
"mocha": "^11.0.1",
"mock-local-storage": "^1.1.24",
"nyc": "^17.1.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}