-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.98 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
{
"name": "go-pass-lookup",
"version": "1.0.0",
"description": "Lookup tool for schools participating in LA Metro's GoPass program.",
"main": "index.js",
"scripts": {
"get:school-data": "curl https://api.metro.net/get_gopass_schools -H 'Accept: application/json' -o src/data/schools.json",
"get:phone-data": "curl 'https://api.metro.net/get_gopass_schools?show_missing=false&combine_phone=true&groupby_column=school' -H 'Accept: application/json' -o src/data/schoolPhones.json",
"get:school-data-tap": "curl https://www.taptogo.net/services/apexrest/schools/v1 -H 'Accept: application/json' -o src/data/schools-api.json",
"get:data-tap": "npm run get:school-data-tap && npm run get:phone-data && npm run clean:school-data-tap && npm run combine:data",
"get:data": "npm run get:school-data && npm run get:phone-data",
"clean:school-data-tap": "node clean-school-data-tap.js",
"combine:data": "node combine-phone-data.js",
"build:uswds": "npx gulp watch",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npx rimraf docs",
"build": "npx @11ty/eleventy --quiet",
"clean:build": "npm run clean && npm run get:data-tap && npm run build",
"serve": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=* npm run clean:build && npx @11ty/eleventy --serve",
"start": "npm run clean:build && npm run serve",
"clean:serve": "npm run clean:build && npm run serve",
"local:serve": "NODE_ENV=localhost npm run clean:serve",
"dev:build": "NODE_ENV=dev npm run clean:build",
"prod:build": "NODE_ENV=prod npm run clean:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LACMTA/gopass-lookup.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LACMTA/gopass-lookup/issues"
},
"homepage": "https://github.com/LACMTA/gopass-lookup#readme",
"devDependencies": {
"@uswds/compile": "^1.0.0-beta.3",
"snyk": "^1.704.0",
"uswds": "^2.13.3"
}
}