generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "us-districts-geojson",
"version": "1.0.1",
"description": "Compiles and updates all Congressional districts into GeoJSON",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrew-Chen-Wang/district-autoupdate.git"
},
"keywords": [
"GitHub",
"Actions",
"United States",
"Districts",
"GeoJSON"
],
"author": "Andrew Chen Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Andrew-Chen-Wang/district-autoupdate/issues"
},
"homepage": "https://github.com/Andrew-Chen-Wang/district-autoupdate#readme",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/exec": "^1.1.0",
"globby": "^12.0.2",
"simple-git": "^2.45.0"
},
"devDependencies": {
"@vercel/ncc": "^0.30.0",
"eslint": "^7.32.0",
"jest": "^27.1.1",
"mock-fs": "^5.0.0"
}
}