-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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": "rsgen",
"version": "0.4.1",
"description": "Resources generation for Typeplate",
"main": "./bin/rsgen.js",
"bin": {
"rsgen": "./bin/rsgen.js"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"publishConfig": {
"access": "public"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false
},
"scripts": {
"ci:test": "npm-run-all -s test:*",
"ci:coverage": "nyc --reporter=lcov --report-dir=./reports/coverage npm-run-all -s test:unit",
"test": "nyc --reporter=html --report-dir=./reports/nyc-coverage npm-run-all -s test:*",
"test:unit": "./node_modules/.bin/mocha ./test/00-bootstrap.unit.test.js --exit --reporter spec --timeout 10000 --env test",
"version": "git add package.json && git add README.md && auto-changelog -p && git add CHANGELOG.md && git commit -m \"Update changelog\" --no-verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steve-lebleu/rsgen.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/steve-lebleu/rsgen/issues"
},
"homepage": "https://github.com/steve-lebleu/rsgen#readme",
"_moduleAliases": {
"@commands": "bin/commands",
"@interfaces": "bin/interfaces",
"@utils": "bin/utils"
},
"dependencies": {
"camelcase": "6.2.1",
"chalk": "4.1.1",
"execa": "6.0.0",
"inquirer": "8.2.0",
"listr": "0.14.3",
"module-alias": "2.2.2",
"pluralize": "8.0.0"
},
"devDependencies": {
"@types/node": "^20.11.6",
"auto-changelog": "^2.4.0",
"chai": "4.3.4",
"coveralls": "3.1.1",
"mocha": "9.1.3",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"sinon": "12.0.1",
"typescript": "^5.3.3"
}
}