forked from bengler/imdikator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.94 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "imdikator",
"version": "0.0.0",
"private": "true",
"description": "Imdikator",
"main": "index.js",
"author": "Bengler AS",
"scripts": {
"watch-test": "npm run test -- --watch",
"cover": "babel-istanbul --report=text --report=html cover _mocha -- --reporter=dot",
"publish-coverage-report": "babel-istanbul --print=none --report=html --dir=./public/coverage cover _mocha -- --reporter=dot",
"test": "npm run mocha -- --timeout 8000 ./test/unit ./test/integration && npm run lint",
"mocha": "mocha",
"test-unit": "mocha ./test/unit",
"test-integration": "mocha ./test/integration",
"bench": "echo 'Benchmarking Visma API. Hang on...' && test/benchmarks/all.sh > benchmarks.md && echo 'Report written to benchmarks.md'",
"start": "remon --require ./.init.js ./bin/server.js",
"bloat": "staticr --stdout --require ./.init.js --route /build/js/bundles/main.js static-routes/browserify-bundles.js | discify --open",
"lint": "eslint --quiet --ext .jsx,.js .",
"compile-assets": "staticr --require babel/register --out-dir public ./static-routes",
"import-regions": "DEBUG=imdikator* babel-node ./bin/importRegions",
"calculate-similar": "DEBUG=imdikator* babel-node ./bin/calculateSimilar",
"import-card-descriptions": "DEBUG=imdikator* babel-node ./bin/importCardDescriptions",
"import-chart-description-labels": "DEBUG=imdikator* babel-node ./bin/importChartDescriptionLabels",
"import-dimensions": "DEBUG=imdikator* babel-node ./bin/importDimensions",
"find-unused-tables": "DEBUG=imdikator* babel-node ./bin/findUnusedTables"
},
"dependencies": {
"array-equal": "^1.0.0",
"babel": "^5.8.23",
"babel-eslint": "^4.0.10",
"babel-istanbul": "^0.4.1",
"babelify": "^6.3.0",
"bluebird": "^2.9.33",
"browserify": "^12.0.1",
"bundle-collapser": "^1.2.1",
"classnames": "^2.1.3",
"clipboard": "^1.5.3",
"closest": "0.0.1",
"codemirror": "^5.8.0",
"combined-stream": "^1.0.5",
"core-js": "^1.2.6",
"csv-parse": "^1.0.0",
"d3": "^3.5.6",
"dasherize": "^2.0.0",
"debug": "^2.2.0",
"defaults": "^1.0.2",
"dev-error-handler": "^0.1.4",
"dom-scroll-into-view": "^1.0.1",
"domready": "^1.0.8",
"duplexify": "^3.4.2",
"envify": "^3.4.0",
"express": "^4.13.3",
"fs-readdir-recursive": "^1.0.0",
"http-browserify": "git://github.com/bjoerge/http-browserify.git#fix-withcredentials-bug",
"http-hash": "^2.0.0",
"humanize-list": "^1.0.0",
"imdi-styles": "netliferesearch/imdi-styles#master",
"less": "^2.5.3",
"load-script": "^1.0.0",
"lodash.capitalize": "^3.0.0",
"lodash.difference": "^3.2.2",
"lodash.flatten": "^3.0.2",
"lodash.indexby": "^3.1.1",
"lodash.omit": "^3.1.0",
"lodash.pick": "^3.1.0",
"lodash.union": "^3.1.0",
"lodash.uniq": "^3.2.2",
"object-inspect": "^1.0.2",
"once": "^1.3.2",
"prevent-default": "0.0.3",
"qs": "^5.1.0",
"react": "^0.14.2",
"react-a11y": "^0.2.6",
"react-addons-update": "^0.14.1",
"react-codemirror": "^0.2.0",
"react-docgen": "^2.1.2",
"react-dom": "^0.14.1",
"react-redux": "^3.1.0",
"rebundler": "^0.2.0",
"redocify": "^1.0.1",
"redux": "^3.0.4",
"redux-devtools": "^2.1.5",
"redux-thunk": "^1.0.0",
"remon": "^1.0.1",
"rx": "^4.0.0",
"rx-node": "^1.0.1",
"smoothscroll": "^0.2.2",
"spawn-stream": "^1.0.2",
"staticr": "^3.0.1",
"textures": "^1.0.3",
"topojson": "^1.6.19",
"uglify-js": "^2.4.24"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"disc": "^1.3.2",
"error-capture-middleware": "0.0.2",
"eslint": "^1.6.0",
"eslint-config-bengler": "^0.3.7",
"eslint-plugin-import": "^0.8.1",
"eslint-plugin-react": "^3.2.3",
"mocha": "^2.2.5",
"quickreload": "^1.0.9",
"react-addons-test-utils": "^0.14.1",
"sinon": "^1.16.1"
},
"browser": {
"http": "http-browserify"
}
}