-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 2.53 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
{
"name": "rankingmap",
"version": "0.0.1",
"description": "Display your data in a d3 map/list ranking",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TimeMagazine/rankingmap.git"
},
"keywords": [
"ranking",
"map",
"d3"
],
"author": "Dave Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimeMagazine/rankingmap/issues"
},
"homepage": "https://github.com/TimeMagazine/rankingmap",
"dependencies": {
"d3": "^4.11.0",
"topojson": "^3.0.2",
"webpack": "^3.8.1",
"elastic-svg":"^0.0.6"
},
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack/dev.config.js",
"watch": "./node_modules/.bin/webpack --config webpack/dev.config.js --watch",
"minify": "./node_modules/.bin/webpack --config webpack/production.config.js",
"dryrun": "aws s3 sync . s3://time-static-shared/interactives/$npm_package_name/ --exclude '*node_modules/*' --exclude='*git/*' --exclude='*DS_Store*' --dryrun",
"upload": "aws s3 sync . s3://time-static-shared/interactives/$npm_package_name/ --exclude '*node_modules/*' --exclude='*git/*' --exclude='*DS_Store*'",
"minimal": "npm run build && npm run uglify && aws s3 sync . s3://time-static-shared/interactives/$npm_package_name/ --exclude '*' --include='script.js --include='script-min.js' --include='index.html'",
"stage": "npm run build && npm run uglify && aws s3 sync . s3://time-static-shared/interactives/staging/$npm_package_name/ --exclude '*node_modules/*' --exclude='*git/*' --exclude='*DS_Store/*'",
"deploy": "npm run build && npm run uglify && npm run upload",
"test": "browserify debug.js > script-min.js --debug && npm run upload",
"url": "echo http://time-static-shared.s3-website-us-east-1.amazonaws.com/interactives/$npm_package_name/",
"staging_url": "echo http://time-static-shared.s3-website-us-east-1.amazonaws.com/interactives/staging/$npm_package_name/"
},
"devDependencies": {
"autoprefixer-loader": "3.2.0",
"babel-core": "6.23.1",
"babel-loader": "6.4.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.22.0",
"css-loader": "0.26.4",
"dsv-loader": "2.0.0",
"fs-extra": "2.0.0",
"less-loader": "3.0.0",
"node-sass": "4.5.0",
"sass-loader": "6.0.3",
"style-loader": "0.13.2",
"underscore-template-loader": "0.7.3",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
}
}