-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 3.2 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
{
"name": "cyclic-visualizer",
"version": "0.0.1",
"description": "Cyclejs Stream & Component Visualizer",
"scripts": {
"test": "node_modules/.bin/jest --detectOpenHandles",
"watch": "node_modules/.bin/jest --watch",
"lint": "node_modules/.bin/tslint -c tslint.json .src/*.ts .src/**/*.ts",
"cleanDist": "rm -rf dist/*",
"copyAssets": "mkdir -p dist/ && cp -r assets/* dist/",
"compile": "node_modules/.bin/tsc",
"distChromeBackground": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/chromeExtension/chromeScripts/background.js -s background --outfile dist/chromeExtension/chromeScripts/background.js",
"distChromeDevtoolsPage": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/chromeExtension/chromeScripts/devtoolsPage.js -s devtoolsPage --outfile dist/chromeExtension/chromeScripts/devtoolsPage.js",
"distChromePanel": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/chromeExtension/chromeScripts/panel.js -s panel --outfile dist/chromeExtension/chromeScripts/panel.js",
"distChromeContentScript": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/chromeExtension/chromeScripts/contentScript.js -s contentScript --outfile dist/chromeExtension/chromeScripts/contentScript.js",
"distChromePageScript": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/chromeExtension/chromeScripts/pageScript.js -s pageScript --outfile dist/chromeExtension/chromeScripts/pageScript.js",
"distTestApp": "NODE_PATH=$NODE_PATH:build node_modules/.bin/browserify build/testApp.js -s ptestApp --outfile dist/testApp.js",
"distChrome": "npm run distChromeBackground && npm run distChromeDevtoolsPage && npm run distChromeContentScript && npm run distChromePageScript && npm run distChromePanel",
"copyVisualize": "cp build/visualize.js dist/visualize.js",
"build": "npm run cleanDist && npm run copyAssets && npm run lint && npm run compile && npm run distChrome && npm run distTestApp && npm run copyVisualize"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/siassaj/cyclic-visualizer.git"
},
"author": "siavash sajjadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/siassaj/cyclic-visualizer/issues"
},
"homepage": "https://github.com/siassaj/cyclic-visualizer#readme",
"dependencies": {
"@cycle/dom": "^22.3.0",
"@cycle/http": "^15.1.0",
"@cycle/run": "^5.2.0",
"@cycle/state": "^1.1.0",
"@cycle/time": "^0.19.0",
"@types/chrome": "^0.0.76",
"@types/cytoscape": "^3.2.9",
"@types/dagre": "^0.7.40",
"@types/lodash": "^4.14.119",
"@types/uuid": "^3.4.4",
"browserify": "^16.2.3",
"csx": "^9.0.0",
"cytoscape": "^3.3.1",
"cytoscape-cola": "^2.3.0",
"cytoscape-cxtmenu": "^3.0.2",
"cytoscape-dagre": "^2.2.2",
"cytoscape-klay": "^3.1.2",
"dagre": "^0.8.4",
"elkjs": "^0.4.1",
"flatted": "^2.0.0",
"jest": "^23.6.0",
"klay": "^2.4.0",
"lodash": "^4.17.11",
"typestyle": "^2.0.1",
"uuid": "^3.3.2",
"webworker-threads": "^0.7.17",
"xstream": "^11.7.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}