-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.59 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
{
"name": "@proteus-h2020/proteic",
"version": "0.0.30",
"description": "Streaming and static data visualization for the modern web",
"homepage": "http://proteic.js.org/",
"main": "dist/proteic.node.js",
"browser": "dist/proteic.js",
"module": "index",
"jsnext:main": "index",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "npm run lint && karma start -c karma.conf.js",
"prebuild": "rimraf dist/*",
"build": "webpack --config webpack.production.config.js && node-sass scss/themes/default/proteic.scss dist/proteic.css --output-style compressed && node-sass scss/themes/lighter/lighter.scss dist/lighter.css --output-style compressed",
"docs": "esdoc -c esdoc.json",
"start": "webpack-dev-server --port 4049",
"prepublish": "npm run build"
},
"keywords": [
"d3",
"chart",
"data visualization"
],
"author": {
"name": "Treelogic S.L.",
"url": "http://www.treelogic.com/"
},
"contributors": [
{
"name": "Nacho García Fernández",
"email": "0xnacho@gmail.com",
"url": "https://0xnacho.github.io/"
},
{
"name": "Jorge Yagüe París",
"email": "jorgeyp@gmail.com",
"url": "http://www.jorgeyp.com/"
},
{
"name": "Gyeongchan Yun",
"email": "rugyoon@gmail.com"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/proteus-h2020/proteic.git"
},
"bugs": {
"url": "https://github.com/proteus-h2020/proteic/issues"
},
"dependencies": {
"d3": "^4.7.1",
"d3-svg-annotation": "^1.17.1",
"d3-svg-legend": "^2.22.0",
"rxjs": "^5.1.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/d3": "^4.3.0",
"@types/mocha": "^2.2.38",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^1.0.1",
"css-loader": "^0.28.7",
"esdoc": "^0.5.2",
"extract-text-webpack-plugin": "^3.0.1",
"jshint": "^2.9.2",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.0.1",
"karma-webpack": "^2.0.1",
"live-server": "^1.1.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.2",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.1",
"strip-loader": "^0.1.2",
"style-loader": "^0.13.1",
"ts-loader": "^2.2.1",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-loader": "^3.5.3",
"typescript": "2.1.6",
"uglify-js": "^2.7.4",
"watch": "^1.0.1",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.2"
}
}