-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
58 lines (58 loc) · 1.9 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
{
"name": "simple-data-grapher",
"version": "2.0.0",
"description": "Turns CSVs into graphs in a few simple steps; various import and export options",
"main": "src/PublicLab.Grapher.js",
"scripts": {
"build": "watch 'babel src -d dist/transpiled_code & browserify dist/transpiled_code/SimpleDataGrapher.js -o dist/PublicLab.Grapher.js' src",
"heroku-postbuild": "babel src -d dist/transpiled_code & browserify dist/transpiled_code/SimpleDataGrapher.js -o dist/PublicLab.Grapher.js",
"test": "./node_modules/mocha/bin/mocha --require @babel/register --require @babel/polyfill --require jsdom-global/register spec/js/ --timeout 30000",
"lint": "eslint ./src ./dist ./spec --fix",
"start": "http-server -c-1 -p ${PORT:=8000}",
"dev_start": "http-server -c-1 -p 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/publiclab/simple-data-grapher.git"
},
"keywords": [
"Data-Grapher",
"Grapher",
"CSV",
"Graph"
],
"author": "Public Lab",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/publiclab/simple-data-grapher/issues"
},
"homepage": "https://github.com/publiclab/simple-data-grapher#readme",
"dependencies": {
"chai": "^4.2.0",
"chartjs": "^0.3.24",
"express": "^4.17.1",
"file-system": "^2.2.2",
"googleapis": "^39.2.0",
"http-server": "^0.11.1",
"iframe-phone": "^1.2.0",
"jquery": "^3.4.1",
"mocha": "^6.1.4",
"papaparse": "^4.6.3",
"puppeteer": "^1.19.0",
"readline": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"eslint": "^5.16.0",
"watch": "^1.0.2"
}
}