-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.22 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
{
"name": "engenharia-reversa-web",
"version": "0.1.0",
"description": "TCC",
"main": "dist/content.js",
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/concordialang/engenharia-reversa-web.git"
},
"bugs": {
"url": "https://github.com/concordialang/engenharia-reversa-web/issues"
},
"homepage": "https://github.com/concordialang/engenharia-reversa-web",
"scripts": {
"dev": "watch 'npm run build' src",
"fmt": "prettier ./ --write",
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "rimraf dist",
"watch": "npm run clean && webpack --config webpack/webpack.dev.js --watch",
"build": "npm run clean && webpack --config webpack/webpack.dev.js",
"coverage": "jest --coverage",
"all": "npm run build && npm run test && npm run fmt",
"preversion": "npm run all",
"postversion": "git push && git push --tags"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": false,
"setupFiles": [
"fake-indexeddb/auto"
]
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier ./ --write"
]
},
"devDependencies": {
"@types/chrome": "0.0.119",
"@types/jest": "^26.0.4",
"@types/uuid": "^8.3.0",
"copy-webpack-plugin": "^5.1.1",
"create-file-webpack": "^1.0.2",
"fake-indexeddb": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rimraf": "^3.0.2 ",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
},
"dependencies": {
"class-transformer": "^0.4.0",
"cytoscape": "^3.18.2",
"cytoscape-dagre": "^2.3.2",
"diff-dom": "^4.2.2",
"file-saver": "^2.0.5",
"get-xpath": "^3.0.0",
"graph-data-structure": "^1.10.0",
"hacktimer": "^1.1.3",
"html-differ": "^1.4.0",
"htmldiff": "0.0.4",
"htmldiff-js": "^1.0.5",
"idb": "^6.1.2",
"idb-mutex": "^0.11.0",
"jszip": "^3.7.1",
"mustache": "^4.0.1",
"mutation-observer": "^1.0.3",
"one-wise": "^2.0.0",
"randexp": "^0.5.3",
"reflect-metadata": "^0.1.13",
"watch": "^1.0.2"
}
}