Initial commit

This commit is contained in:
Andrew Branch
2020-03-03 14:07:57 -08:00
commit 21fb5dfae6
10 changed files with 6733 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
node_modules
.DS_Store
*.log

6
lerna.json Normal file
View File

@@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "0.0.0"
}

6595
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

9
package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "root",
"private": true,
"devDependencies": {
"@types/node": "^13.7.7",
"lerna": "^3.20.2",
"typescript": "^3.8.3"
}
}

View File

@@ -0,0 +1,11 @@
# `@definitelytyped/definitions-parser`
> TODO: description
## Usage
```
const definitionsParser = require('@definitelytyped/definitions-parser');
// TODO: DEMONSTRATE API
```

View File

@@ -0,0 +1,29 @@
{
"name": "@definitelytyped/definitions-parser",
"version": "1.0.0",
"description": "Reads the DefinitelyTyped repository and provides an API for querying its metadata",
"author": "Andrew Branch <andrew@wheream.io>",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools#readme",
"license": "MIT",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped-tools.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools/issues"
}
}

View File

@@ -0,0 +1,11 @@
# `@definitelytyped/publisher`
> TODO: description
## Usage
```
const publisher = require('@definitelytyped/publisher');
// TODO: DEMONSTRATE API
```

View File

@@ -0,0 +1,29 @@
{
"name": "@definitelytyped/publisher",
"version": "1.0.0",
"description": "Publish DefinitelyTyped definitions to NPM",
"author": "Andrew Branch <andrew@wheream.io>",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools#readme",
"license": "MIT",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped-tools.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools/issues"
}
}

11
packages/utils/README.md Normal file
View File

@@ -0,0 +1,11 @@
# `@definitelytyped/utils`
> TODO: description
## Usage
```
const utils = require('@definitelytyped/utils');
// TODO: DEMONSTRATE API
```

View File

@@ -0,0 +1,29 @@
{
"name": "@definitelytyped/utils",
"version": "1.0.0",
"description": "> TODO: description",
"author": "Andrew Branch <andrew@wheream.io>",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools#readme",
"license": "MIT",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped-tools.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped-tools/issues"
}
}