-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1015 Bytes
/
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
{
"name": "stardew-crop-data",
"version": "1.1.1",
"description": "Parses Stardew Valley data files and extracts the crop data as JSON for use in web apps",
"main": "parse.js",
"scripts": {
"check-links": "markdown-link-check README.md",
"lint": "eslint \"**/*.js\"",
"start": "node .",
"test": "npm run lint && npm run check-links",
"release": "standard-version"
},
"author": "Polar stoat",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polarstoat/stardew-crop-data.git"
},
"bugs": {
"url": "https://github.com/polarstoat/stardew-crop-data/issues"
},
"homepage": "https://github.com/polarstoat/stardew-crop-data#readme",
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"markdown-link-check": "^3.8.7",
"standard-version": "^9.3.0"
},
"dependencies": {
"jsonfile": "^6.1.0",
"xnbcli": "github:LeonBlade/xnbcli#v1.0.6"
}
}