-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.18 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
{
"name": "viz-tr-org",
"version": "2019.02.20",
"description": "Interactive Diagrams for Transform Rockford Community Regional Indicator Scorecard - Scorecard indicators for Transform Rockford Regional Transformation Plan ",
"repository": {
"type": "git",
"url": "https://github.com/asteriusj/vis-tr-org"
},
"engines": {
"node": ">= 8.x",
"npm": ">= 3.x"
},
"main": "index.js",
"scripts": {
"watch": "watchify -t cssify src/main.js -o src/bundle.js -v",
"build-index": "browserify -t cssify src/main.js -o src/bundle.js",
"build-browse": "browserify -t cssify src/scorecards/browse/main.js -o src/scorecards/browse/bundle.js",
"build-cards": "browserify -t cssify src/scorecards/cards/main.js -o src/scorecards/cards/bundle.js",
"build-sunburst": "browserify -t cssify src/scorecards/sunburst/main.js -o src/scorecards/sunburst/bundle.js",
"build-tree": "browserify -t cssify src/scorecards/tree/main.js -o src/scorecards/tree/bundle.js",
"build": " npm run build-index && npm run build-browse && npm run build-cards && npm run build-sunburst && npm run build-tree ",
"test": "npm run ./test/test.js"
},
"author": "",
"license": "ISC",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"dependencies": {
"array-to-tree": "^3.3.0",
"aws": "0.0.3-2",
"aws-cli": "0.0.2",
"g": "^2.0.1",
"serverless": "^1.48.4",
"serverless-finch": "^2.4.2",
"serverless-s3-sync": "^1.8.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/helper-plugin-test-runner": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-plugin-filter-imports": "^2.0.4",
"babel-plugin-transform-commonjs-es2015-modules": "4.0.1",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babelify": "10.0.0",
"browserify": "^16.3.0",
"cssify": "^1.0.3",
"watchify": "^3.11.1"
}
}