-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"author": "Bailey Stoner <monokrome@limpidtech.com> (http://monokro.me/)",
"engines": {
"node": ">=14.0.0"
},
"homepage": "http://preferjs.limpidtech.com/",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "prefer",
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "ts-mocha 'test/**/*_test.ts'",
"test:watch": "npm run test -- --watch",
"test:coverage": "c8 ts-mocha 'test/**/*_test.ts'",
"prepublishOnly": "npm run clean && npm run lint && npm run typecheck && npm test && npm run build",
"clean": "rm -rf dist dist-test",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"docs": "typedoc",
"docs:watch": "typedoc --watch"
},
"version": "0.7.0",
"dependencies": {
"chalk": "^4.1.2",
"ini": "^4.1.1",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"smol-toml": "^1.3.1",
"winston": "^3.11.0",
"xml2js": "^0.6.2"
},
"description": "Configuration management for NodeJS",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/ini": "^4.1.0",
"@types/js-yaml": "^4.0.9",
"@types/json5": "^0.0.30",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.10",
"@types/node": "^20.10.6",
"@types/sinon": "^17.0.2",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"c8": "^10.1.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"eslint-plugin-tsdoc": "^0.4.0",
"mocha": "^10.2.0",
"prettier": "^3.6.2",
"sinon": "^17.0.1",
"ts-mocha": "^11.1.0",
"typedoc": "^0.28.14",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git://github.com/LimpidTech/preferjs.git"
}
}