This repository has been archived by the owner on Aug 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
{
"name": "data.webuild.sg",
"version": "1.0.0",
"description": "using data and graphs to inspire variety, openness and projects for the design and engineering community in Singapore",
"keywords": [
"archives",
"data",
"snapshot",
"events",
"meetups",
"repos",
"repositories",
"webuild.sg",
"developer",
"engineer",
"designer",
"open source",
"graphs",
"charts"
],
"homepage": "https://github.com/webuildsg/data#readme",
"bugs": {
"url": "https://github.com/webuildsg/data/issues"
},
"license": "MIT",
"main": "index.html",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webuildsg/data.git"
},
"private": true,
"scripts": {
"build:html": "gulp",
"build:graph": "node graphs",
"build:js": "standard-format -w",
"build": "npm run build:html && npm run build:graph && npm run build:js",
"check": "node tasks/check",
"clean": "rm index.html && rm -rf dataset && rm -rf public/data",
"deploy": "git push origin gh-pages",
"start": "http-server ./",
"status": "notes graphs tasks test views && npm outdated",
"test": "jshint graphs tasks test public/js && standard tasks/**/*.js graphs/**/*.js public/**/*.js && NODE_ENV=test mocha test --recursive",
"update": "git pull && npm run build && npm run check && npm t && npm start"
},
"devDependencies": {
"chai": "4.1.2",
"gulp": "3.9.1",
"gulp-pug": "3.3.0",
"http-server": "0.10.0",
"pug": "2.0.0-rc.4",
"jshint": "2.9.5",
"mocha": "4.0.1",
"notes": "0.0.4",
"standard": "10.0.3",
"standard-format": "2.2.4"
},
"dependencies": {
"geocoder": "0.2.3",
"geojson": "0.5.0",
"lodash": "4.17.4",
"moment-timezone": "0.5.13",
"word-overlap": "2.4.1"
}
}