-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "webwire",
"version": "1.0.0",
"description": "A tool for automatic wireframe generation from websites.",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"start": "npm run clean && node dist/run.js",
"start:inspector": "rimraf generated/data && node dist/run.js --inspector",
"start:render": "rimraf generated/images && node dist/run.js --render",
"start:diff": "node dist/run.js --diff",
"clean": "rimraf generated",
"inspector": "node dist/inspector/index.js",
"render": "node dist/render/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/literallysofia/feup-diss.git"
},
"author": "Sofia Silva",
"license": "ISC",
"bugs": {
"url": "https://github.com/literallysofia/feup-diss/issues"
},
"homepage": "https://github.com/literallysofia/feup-diss#readme",
"devDependencies": {
"@types/chromedriver": "^81.0.0",
"@types/cli-progress": "^3.7.0",
"@types/command-line-args": "^5.0.0",
"@types/js-yaml": "^3.12.4",
"@types/jsdom": "^16.2.3",
"@types/node": "^14.0.6",
"@types/prettier": "^2.0.1",
"@types/puppeteer": "^3.0.0",
"@types/seedrandom": "^2.4.28",
"@types/selenium-webdriver": "^4.0.9",
"@types/svgo": "^1.3.3",
"@types/xmlserializer": "^0.6.0",
"node": "^12.17.0",
"npm": "^6.14.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.3"
},
"dependencies": {
"canvas": "^2.6.1",
"chromedriver": "^83.0.0",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"command-line-args": "^5.1.1",
"js-yaml": "^3.14.0",
"jsdom": "^16.2.2",
"json-diff": "^0.5.4",
"json2typescript": "^1.2.5",
"lorem-ipsum": "^2.0.3",
"prettier": "^2.0.5",
"puppeteer": "^3.2.0",
"roughjs": "^4.3.1",
"seedrandom": "^3.0.5",
"selenium-webdriver": "^4.0.0-alpha.7",
"svgo": "^1.3.2",
"svgpath": "^2.3.0",
"xmlserializer": "^0.6.1"
}
}