-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·85 lines (85 loc) · 2.28 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
{
"name": "setmeup",
"version": "1.9.3",
"description": "SetMeUp, your single and only settings manager.",
"keywords": [
"setmeup",
"configuration",
"settings",
"setup",
"env"
],
"author": "Igor Ramadas <[email protected]>",
"homepage": "https://setmeup.devv.com",
"subdomain": "setmeup",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"setmeup": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/igoramadas/setmeup.git"
},
"engines": {
"node": ">= 16.0"
},
"scripts": {
"build": "tsc -p tsconfig-build.json",
"build-test": "tsc -p tsconfig-test.json",
"clean": "rm -rf ./lib && rm -rf ./lib-test && rm -rf ./coverage && rm -rf ./docs",
"prebuild": "npm run clean",
"docs": "rm -rf ./docs && typedoc && cp CNAME docs/ && cp .nojekyll docs/",
"test": "npm run build-test && mocha ./test/*.ts",
"test-coverage": "nyc --reporter=lcov npm test"
},
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.7",
"anyhow": "^3.4.0",
"chai": "^4.5.0",
"coveralls": "^3.1.1",
"mocha": "^10.7.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
},
"peerDependencies": {
"anyhow": "^3.3.0"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
},
"mocha": {
"timeout": 5000,
"exit": true,
"recursive": true,
"require": [
"test/mocha.env",
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"temp-dir": "./coverage",
"reporter": [
"lcov",
"text"
]
}
}