-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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": "finda",
"version": "0.0.0",
"description": "Generic 'find-a' app for geographic datasets",
"directories": {
"test": "test"
},
"devDependencies": {
"karma": "~0.13.22",
"jshint": "~2.4.4",
"karma-requirejs": "~0.2.6",
"karma-jasmine": "~0.1.5",
"karma-cli": "0.0.3",
"karma-phantomjs-launcher": "~0.1.2",
"almond": "^0.2.9",
"clean-css": "^2.1.6",
"requirejs": "^2.1.11",
"rimraf": "^2.2.6",
"replace": "^0.2.9",
"glob": "^3.2.9",
"mkdirp": "^0.3.5",
"copyfiles": "0.0.1"
},
"scripts": {
"start": "http-server",
"test": "jshint src && karma start --single-run --browsers PhantomJS",
"test-server": "jshint src && karma start --browsers PhantomJS",
"test-client": "jshint src && karma run",
"build": "npm run clean && npm run copy && npm run cssmin && npm run requirejs && npm run processhtml && npm run index",
"clean": "rimraf dist",
"copy": "copyfiles index.html data.geojson config.json *.md styles/properties.css img/* lib/leaflet/images/marker-* dist",
"cssmin": "cleancss --s1 -o dist/styles/style.css styles/style.css",
"requirejs": "r.js -o script/build.js",
"index": "replace -s 'data-main=\"(src/script.js)\" src=\"lib/require.js\"' 'src=\"$1\"' dist/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/codeforboston/finda.git"
},
"license": "MIT",
"private": true
}