-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "@metaverse-systems/the-seed",
"version": "1.0.5",
"description": "The Seed",
"main": "dist/index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src/*",
"lint-fix": "./node_modules/eslint/bin/eslint.js src/* --fix",
"build": "tsc",
"test": "./node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metaverse-systems/the-seed.git"
},
"author": "Tim Schwartz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/metaverse-systems/the-seed/issues"
},
"homepage": "https://github.com/metaverse-systems/the-seed#readme",
"dependencies": {
"fs-extra": "^10.0.1",
"inquirer": "^8.2.2",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"bin": {
"the-seed": "dist/scripts/the-seed.js"
},
"keywords": [],
"devDependencies": {
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
}
}