mirror of
https://github.com/chenasraf/DefinitelyTyped-tools.git
synced 2026-05-18 01:49:03 +00:00
Initial commit
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
.DS_Store
|
||||
*.log
|
||||
6
lerna.json
Normal file
6
lerna.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"version": "0.0.0"
|
||||
}
|
||||
6595
package-lock.json
generated
Normal file
6595
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
9
package.json
Normal file
9
package.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "root",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@types/node": "^13.7.7",
|
||||
"lerna": "^3.20.2",
|
||||
"typescript": "^3.8.3"
|
||||
}
|
||||
}
|
||||
11
packages/definitions-parser/README.md
Normal file
11
packages/definitions-parser/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# `@definitelytyped/definitions-parser`
|
||||
|
||||
> TODO: description
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
const definitionsParser = require('@definitelytyped/definitions-parser');
|
||||
|
||||
// TODO: DEMONSTRATE API
|
||||
```
|
||||
29
packages/definitions-parser/package.json
Normal file
29
packages/definitions-parser/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
11
packages/publisher/README.md
Normal file
11
packages/publisher/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# `@definitelytyped/publisher`
|
||||
|
||||
> TODO: description
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
const publisher = require('@definitelytyped/publisher');
|
||||
|
||||
// TODO: DEMONSTRATE API
|
||||
```
|
||||
29
packages/publisher/package.json
Normal file
29
packages/publisher/package.json
Normal 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
11
packages/utils/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# `@definitelytyped/utils`
|
||||
|
||||
> TODO: description
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
const utils = require('@definitelytyped/utils');
|
||||
|
||||
// TODO: DEMONSTRATE API
|
||||
```
|
||||
29
packages/utils/package.json
Normal file
29
packages/utils/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user