-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.88 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.88 KB
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
{
"name": "mx2json",
"description": "",
"homepage": "https://github.com/AndreasPizsa/mx2json#readme",
"version": "0.0.0-development",
"main": "api.js",
"bin": {
"mx2json": "cli.js"
},
"author": {
"email": "hopster@gmail.com",
"name": "Andreas Pizsa",
"url": "https://github.com/AndreasPizsa"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreasPizsa/mx2json.git"
},
"bugs": {
"url": "https://github.com/AndreasPizsa/mx2json/issues"
},
"keywords": [
"convert",
"game design",
"json",
"machinations",
"model",
"uml"
],
"dependencies": {
"change-case": "^3.1.0",
"get-stdin": "^7.0.0",
"googleapis": "^44.0.0",
"got": "^9.6.0",
"lodash.flatmap": "^4.5.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"@andreaspizsa/eslint-config-xo": "^0.1.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ajv": "^6.10.2",
"ava": "^2.4.0",
"codecov": "^3.6.1",
"finepack": "^2.9.1",
"husky": "^3.0.9",
"is-ci": "^2.0.0",
"nyc": "^14.1.1",
"semantic-release": "^15.13.30",
"xo": "^0.25.3"
},
"files": [
"cli.js"
],
"scripts": {
"preinstall": "npx npm-force-resolutions",
"pretest": "xo",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release",
"test": "nyc ava && is-ci && npm run report-coverage || true"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"https-proxy-agent": ">=2.2.3"
},
"xo": {
"extends": [
"@andreaspizsa/eslint-config-xo"
],
"semicolon": false,
"space": true,
"settings": {
"node/no-unpublished-bin": 0
}
}
}