forked from thoughtworks/build-your-own-radar
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
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
{
"name": "techradar",
"version": "0.1.2",
"description": "Visualize data interactively on a web page as a radar.",
"main": "index.js",
"license": "AGPL-3.0",
"scripts": {
"test": "npm run flow && npm run jasmine",
"demo": "NODE_ENV=development webpack-dev-server --dev --inline",
"jasmine": "istanbul cover jasmine",
"flow": "flow",
"debug": "node-debug webpack",
"shrinkpack": "rm -rf ./node_modules && rm -f npm-shrinkwrap.json && npm i && npm shrinkwrap --dev && shrinkpack"
},
"author": "Thomas Franz",
"repository": {
"type": "git",
"url": "https://github.com/thomasfranz/techradar"
},
"keywords": [
"tech-radar"
],
"devDependencies": {
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.10.0",
"flow-bin": "0.36.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.28.0",
"istanbul": "0.4.5",
"jasmine": "2.5.2",
"json-loader": "0.5.4",
"node-sass": "3.10.0",
"sass-loader": "4.0.2",
"shrinkpack": "0.17.1",
"style-loader": "0.13.1",
"webpack": "2.2.1",
"webpack-dev-server": "1.16.3"
},
"dependencies": {
"chance": "1.0.4",
"d3": "4.4.0",
"d3-tip": "0.7.1",
"lodash": "4.16.2",
"node-nightly": "1.7.0",
"ramda": "0.22.1",
"raw-loader": "0.5.1",
"sanitize-html": "1.13.0"
}
}