-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "3x5-numbers",
"version": "0.0.1",
"private": true,
"description": "These Are The Numbers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kartoteket/numbers.git"
},
"author": "Kartoteket",
"contributors": [
"Bård Røtzer <[email protected]>",
"Svale Fossåskaret <[email protected]>"
],
"main": "index.html",
"bin": {
"ractivate": "node_modules/ractivate/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npm run build -- clean",
"build": "./bin/build.sh",
"watch": "./bin/watch.sh",
"lint": "eslint src/js",
"preinstall": "npm link ../d3by5-bar-graph && npm link ../d3by5-pie-chart && npm link ../d3by5-line-chart && npm link ../datamaps",
"preupdate": "npm link ../d3by5-bar-graph && npm link ../d3by5-pie-chart && npm link ../d3by5-line-chart && npm link ../datamaps"
},
"aliasify": {
"aliases": {
"utils/clientUrl": "./src/js/utils/clientUrl"
},
"replacements": {
"components/(\\w+)": "./src/js/components/$1",
"lib/(\\w+)": "./src/js/lib/$1"
}
},
"devDependencies": {
"aliasify": "^2.0.0",
"autoprefixer": "^6.3.6",
"browserify": "latest",
"eslint": "^2.8.0",
"livereload": "^0.4.1",
"node-sass": "^3.4.2",
"onchange": "^2.4.0",
"postcss-cli": "^2.5.1",
"ractivate": "latest",
"uglify-js": "^2.6.2",
"watchify": "latest"
},
"dependencies": {
"d3": "^3.5.16",
"d3by5-bar-graph": "latest",
"d3by5-pie-chart": "latest",
"d3by5-line-chart": "latest",
"leaflet": "^1.0.0-rc.1",
"page": "^1.7.1",
"ractive": "^0.7.3",
"underscore": "latest"
}
}