forked from 18F/data-act-pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 825 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "data-act-pilot",
"version": "0.1.0",
"description": "This repository contains code for a Small Business Administration pilot project that: * maps agency financial and award data to DATA Act elements and * translates them to a uniform DATA Act standard.",
"main": "app/static/main.js",
"config": {
"base": "./app"
},
"scripts": {
"build": "npm run clean && npm run build-dirs && cp -r $npm_package_config_base/src/css/* $npm_package_config_base/static/css/",
"build-dirs": "mkdir -p $npm_package_config_base/static/css",
"clean": "rm -rf $npm_package_config_base/static/css/*.css",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watch 'npm run build' $npm_package_config_base/src/css/"
},
"author": "",
"devDependencies": {
"watch": "^0.16.0"
}
}