-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
91 lines (91 loc) · 3.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@knight-lab/storyline",
"version": "1.1.0",
"description": "Storyline is a tool for journalists to provide narrative context to readable line charts in a form which is optimized for the mobile user experience.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NUKnightLab/storyline.git"
},
"author": "Northwestern University Knight Lab",
"license": "ISC",
"bugs": {
"url": "https://github.com/NUKnightLab/storyline/issues"
},
"homepage": "https://storyline.knightlab.com",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"add-banner": "github:jonschlinkert/add-banner#b2a824c466413677264364042bb4c30df0de2ebe",
"adm-zip": "~> 0.4.11",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"core-js": "^3.6.5",
"cssmin": "^0.4.3",
"csv-parse": "^4.12.0",
"d3-axis": "^1.0.5",
"d3-scale": "^1.0.4",
"d3-selection": "^1.0.4",
"d3-time-format": "^2.0.5",
"es6-promise": "^4.0.5",
"exit-hook": "^1.1.1",
"fs-extra": "^0.30.0",
"glob": "^7.1.2",
"globby": "^5.0.0",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.6",
"lodash.throttle": "^4.1.1",
"mocha": "^8.1.3",
"moment": "^2.17.1",
"mustache": "^2.3.0",
"ncp": "^2.0.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prompt": "^1.0.0",
"pubsub-js": "^1.5.4",
"rimraf": "^2.5.3",
"shelljs": "^0.7.0",
"simple-git": "^1.67.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"stream-transform": "^0.1.1",
"tiny-lr": "^1.1.1",
"universal-analytics": "^0.4.23",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.2",
"write-banner": "^0.1.3",
"xhr-stream": "^1.1.0",
"yamljs": "^0.3.0"
},
"scripts": {
"start": "npm-run-all -p webpack:watch watch",
"webpack:watch": "webpack --config webpack.dev.js --watch",
"prestart": "npm run clean && webpack --config webpack.dev.js && npm-run-all -s compile templates",
"dist": "npm run clean && webpack --config webpack.prod.js -p && npm-run-all -s compile 'templates prd' sass && node tasks/minify-css.js",
"clean": "rimraf dist/",
"watch": "node tasks/watch.js",
"server": "http-server ./dist -c-1",
"compile": "npm run copy && npm run sass",
"templates": "node tasks/compile-hbs.js",
"copy": "npx ncp src/index.html dist/index.html && ncp src/assets dist/assets --stopOnErr",
"sass": "npx node-sass -o dist/css -q --output-style compact src/scss/",
"test": "mocha --require @babel/register './test/*-test.js'",
"stage": "npm run clean && npm run dist && node tasks/stage.js",
"stage_latest": "npm run clean && npm run dist && node tasks/stage.js latest",
"stage_dev": "npm run clean && npm run dist && node tasks/stage.js dev"
},
"contributors": [
"Divya Sasidharan <[email protected]> (https://github.com/shortdiv)",
"Zach Wise <[email protected]> (https://github.com/zachwise)",
"Joe Germuska <[email protected]> (https://github.com/JoeGermuska)",
"Emily Withrow <[email protected]> (https://github.com/emilywithrow)",
"Josh Shi (https://github.com/thehandsomepanther)"
],
"directories": {
"test": "test"
},
"dependencies": {}
}