-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 1.03 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
{
"name": "federalist-landing-page-template",
"version": "1.0.0",
"description": "Federalist landing page template",
"main": "index.js",
"scripts": {
"install": "npm run uswds",
"uswds": "npm run uswds:prep && npm run uswds:css && npm run uswds:fonts && npm run uswds:img",
"uswds:prep": "mkdir -p css && mkdir -p fonts && mkdir -p img",
"uswds:css": "cp -R ./node_modules/uswds/dist/css/* ./css",
"uswds:fonts": "cp -R ./node_modules/uswds/dist/fonts/* ./fonts",
"uswds:img": "cp -R ./node_modules/uswds/dist/img/* ./img",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/federalist-landing-page-template"
},
"author": "Jeremia Kimelman <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/18F/federalist-landing-page-template/issues"
},
"homepage": "https://github.com/18F/federalist-landing-page-template#readme",
"dependencies": {
"uswds": "^0.13.1"
}
}