-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.01 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
{
"name": "dasm",
"version": "1.0.0",
"description": "A disassembler",
"bin": "bin/dasm.js",
"scripts": {
"test": "xo --fix . && jest",
"docs": "jsdoc src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drazisil/dasm.git"
},
"author": "Drazisil",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/drazisil/dasm/issues"
},
"homepage": "https://github.com/drazisil/dasm#readme",
"dependencies": {
"yargs": "16.1.1"
},
"devDependencies": {
"jest": "26.6.3",
"jest-junit": "12.0.0",
"jsdoc": "3.6.6",
"prettier": "2.2.0",
"xo": "0.34.2"
},
"xo": {
"prettier": true,
"envs": [
"es2020",
"node",
"jest"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageReporters": [
"text",
"cobertura"
],
"reporters": [
"default",
"jest-junit"
]
}
}