-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
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
{
"name": "@spriteworld/pokemon-data",
"version": "0.0.1",
"description": "Collection of Pokemon data and surrounding functionality.",
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"lint": "eslint . --ext .js,.jsx",
"test": "jest --watchAll --bail",
"test:debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand --watch"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"main": "src/index.js",
"author": "xLink <xLink@cybershade.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/spriteworld/data.git"
},
"bugs": {
"url": "https://github.com/spriteworld/data/issues"
},
"homepage": "https://github.com/spriteworld/data#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.4",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.0",
"jest": "^27.2.4",
"jest-extended": "^0.11.5",
"ts-jest": "^27.0.5"
}
}