-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "typed-config-manager",
"version": "0.0.0",
"description": "Configuration management for TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "jest -c ./test/jest.config.unit.js",
"test-integration": "jest -c ./test/jest.config.integration.js",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/SAMERkab/typed-config-manager.git"
},
"bugs": {
"url": "https://github.com/SAMERkab/typed-config-manager/issues"
},
"homepage": "https://github.com/SAMERkab/typed-config-manager#readme",
"author": "Samer Alkhabbaz <[email protected]>",
"license": "MIT",
"keywords": [
"config",
"configuration"
],
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.10.2",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^10.1.5"
}
}