-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "package-json-manager",
"version": "1.1.6",
"description": "Autonomously determine correct version of all the things.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/package-json-manager.git"
},
"keywords": [
"package-json",
"integration-testing"
],
"publishConfig": {
"access": "public"
},
"author": "Charlie Greenman",
"license": "MIT",
"bugs": {
"url": "https://github.com/razroo/package-json-manager/issues"
},
"homepage": "https://github.com/razroo/package-json-manager#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"resolve": "^1.22.1",
"tslib": "^2.4.1"
},
"files": [
"dist/**/*"
]
}