-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "shell-factory-cocos",
"version": "1.0.5",
"description": "Common commands collection for shell-factory",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"type": "module",
"scripts": {
"build": "npx tsc",
"test": "npx tsc -p tsconfig-tests.json && npx c8 -r html mocha ./tests-build/tests/*.test.js",
"test-cleanup": "rm -rf ./tests-build",
"test-n-cleanup": "npm run test; npm run test-cleanup",
"lint": "npx eslint .",
"generate-docs": "npx typedoc",
"example": "npm run build && node ./examples/example.js"
},
"author": "monstermichl",
"license": "MIT",
"dependencies": {
"shell-factory": "^3.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^18.18.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"c8": "^7.14.0",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"files": [
"dist/**/*"
],
"keywords": [
"bourne",
"bash",
"shell",
"generator",
"builder",
"typescript",
"dynamically",
"chainable",
"common",
"commands"
],
"repository": {
"type": "git",
"url": "https://github.com/monstermichl/shell-factory-cocos.git"
}
}