-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nyc-spots",
"version": "1.0.0",
"description": "Some nice spots in new york (brooklyn)",
"main": "package.json",
"scripts": {
"test": "semistandard --fix",
"predev": "npm run build --silent",
"dev:js": "node build/tasks/rollup/init-watch.js & node build/tasks/rollup/watch-for-new.js",
"dev:css": "node build/tasks/stylus/watch.js",
"dev:html": "node build/tasks/html/watch.js",
"dev:server": "node build/tasks/browserSync/cli.js",
"dev:statics": "node build/tasks/statics/watch.js",
"build:js": "node build/tasks/rollup/cli.js",
"build:css": "node build/tasks/stylus/cli.js",
"build:html": "node ./build/tasks/html/cli.js",
"build:statics": "node ./build/tasks/statics/cli.js",
"build-view": "npm run build --silent && npm run view --silent",
"view": "npm run dev:server",
"build": "npm run build:statics --silent && npm run build:js --silent && npm run build:css --silent && npm run build:html --silent",
"dev": "npm run dev:js --silent & npm run dev:html --silent & npm run dev:css --silent & npm run dev:statics --silent",
"publish": "git subtree push --prefix public origin gh-pages"
},
"keywords": [],
"private": true,
"author": "Michael Keller",
"license": "Apache-2.0",
"devDependencies": {
"archieml": "^0.3.1",
"autoprefixer": "^7.2.4",
"autoprefixer-stylus": "^0.9.4",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.11.2",
"chalk": "^1.1.1",
"chokidar": "^1.4.3",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^0.26.7",
"glob": "^7.0.5",
"indian-ocean": "^3.0.1",
"mkdirp": "^0.5.1",
"postcss": "^6.0.15",
"queue-async": "^1.2.1",
"rimraf": "^2.5.2",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rupture": "^0.6.1",
"semistandard": "^11.0.0",
"stylus": "<1.0.0",
"underscore": "^1.9.0",
"underscore-template-pipe": "^1.0.0",
"wsk": "^1.0.0",
"yargs": "^3.32.0"
},
"engines": {
"node": "^4.4.3"
},
"dependencies": {
"csv2geojson": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/csvsoundsystem/nyc-spots"
},
"bugs": {
"url": "https://github.com/csvsoundsystem/nyc-spots/issues"
},
"homepage": "https://csvsoundsystem.github.io/nyc-spots"
}