forked from thoughtworks/build-your-own-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "build-your-own-radar",
"version": "0.3.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "istanbul cover jasmine",
"dev": "webpack-dev-server --dev --inline",
"build": "webpack --prod",
"examples:clean": "rm -rf examples/",
"examples:copy": "mkdir examples && cp -r dist/* examples",
"examples": "npm run build && npm run examples:clean && npm run examples:copy",
"publishExamples": "node ./scripts/publish-examples.js"
},
"author": "ThoughtWorks",
"repository": {
"type": "git",
"url": "https://github.com/thoughtworks/build-your-own-radar"
},
"keywords": [
"tech-radar"
],
"license": "AGPL-3.0",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.3.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.22.0",
"copy-webpack-plugin": "^4.5.1",
"istanbul": "^0.4.5",
"jasmine": "^2.5.2",
"json-loader": "^0.5.4",
"marked": "^0.3.19",
"node-sass": "^4.5.3",
"sass-loader": "^4.1.1",
"style-loader": "^0.18.1",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.1",
"xmlhttprequest": "^1.8.0",
"yargs": "^8.0.1"
},
"dependencies": {
"chance": "^1.0.4",
"d3": "^4.2.6",
"d3-tip": "^0.7.1",
"lodash": "^4.16.2",
"micromodal": "^0.3.2",
"sanitize-html": "^1.13.0",
"tabletop": "^1.4.3"
}
}