-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.44 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
{
"name": "code-clone-visulaization",
"version": "1.0.0",
"description": "A web based alternative to visualize genealogy of code clones that works on the output of GCAD and NiCad , default starts at http://localhost:8080/?source=argo ",
"main": "src/app.js",
"scripts": {
"start": "webpack-dev-server --config ./build-config/webpack.config.js --watch-poll",
"build": "webpack --config ./build-config/webpack.prod.config.js",
"deploy": "npm run build && npm run deploy-gh",
"deploy-gh": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiranbandi/code-clone-visulaization.git"
},
"keywords": [
"code clone",
"visualisation",
"NiCad"
],
"author": "kiranbandi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiranbandi/code-clone-visulaization/issues"
},
"homepage": "https://github.com/kiranbandi/code-clone-visulaization#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-polyfill": "^6.26.0",
"gh-pages": "^0.12.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"axios": "^0.17.1",
"d3": "^4.12.2",
"p5": "^0.5.16",
"xml-js": "^1.6.2"
}
}