@proteinjs/reflection-build 1.4.8 → 1.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/modules/typescript-parser/node-parser/function-parser.js +2 -1
- package/dist/test/ParseTupleParams.test.d.ts +1 -0
- package/dist/test/ParseTupleParams.test.js +108 -0
- package/dist/test/ParseTupleParams.test.js.map +1 -0
- package/modules/typescript-parser/node-parser/function-parser.js +2 -1
- package/package.json +7 -5
- package/test/ParseTupleParams.test.ts +46 -0
- package/test/examples/source-repository/a/node_modules/.package-lock.json +16 -16
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/package.json +2 -2
- package/test/examples/source-repository/a/node_modules/@proteinjs/util/package.json +2 -3
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +4 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +3 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +3 -4
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/PackageUtil.ts +4 -1
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +5 -5
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +106 -100
- package/test/examples/source-repository/a/package-lock.json +20 -20
- package/test/examples/source-repository/a/package.json +4 -4
- package/test/examples/source-repository/b/node_modules/.package-lock.json +12 -12
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/package.json +2 -2
- package/test/examples/source-repository/b/node_modules/@proteinjs/util/package.json +2 -3
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +4 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +3 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +3 -4
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/PackageUtil.ts +4 -1
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +5 -5
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +106 -100
- package/test/examples/source-repository/b/package-lock.json +16 -16
- package/test/examples/source-repository/b/package.json +4 -4
- package/dist/modules/typescript-parser/package-lock.json +0 -16793
- package/dist/modules/typescript-parser/package.json +0 -55
- package/modules/typescript-parser/package-lock.json +0 -16793
- package/modules/typescript-parser/package.json +0 -55
- package/test/examples/source-repository/a/node_modules/@proteinjs/util/LICENSE +0 -21
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/LICENSE +0 -21
- package/test/examples/source-repository/b/node_modules/@proteinjs/util/LICENSE +0 -21
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/LICENSE +0 -21
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "typescript-parser",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": true,
|
|
5
|
-
"description": "Parser for typescript (and javascript) files, that compiles those files and generates a human understandable AST.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"typings": "index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
|
|
10
|
-
"clean": "del-cli ./build ./coverage",
|
|
11
|
-
"develop": "npm run clean && tsc -p .",
|
|
12
|
-
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json 'src/**/*.ts'",
|
|
13
|
-
"test": "npm run lint && npm run clean && jest -c ./jest.json",
|
|
14
|
-
"test:watch": "npm run clean && jest -c ./jest.json --watch --no-coverage",
|
|
15
|
-
"typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/",
|
|
16
|
-
"semantic-release": "semantic-release"
|
|
17
|
-
},
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "https://github.com/TypeScript-Heroes/node-typescript-parser.git"
|
|
21
|
-
},
|
|
22
|
-
"keywords": [
|
|
23
|
-
"typescript",
|
|
24
|
-
"parser",
|
|
25
|
-
"AST",
|
|
26
|
-
"parsing"
|
|
27
|
-
],
|
|
28
|
-
"author": "Christoph Bühler <christoph.buehler@bluewin.ch>",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/TypeScript-Heroes/node-typescript-parser/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/TypeScript-Heroes/node-typescript-parser#readme",
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@smartive/tslint-config": "^4.0.0",
|
|
36
|
-
"@types/jest": "^23.3.1",
|
|
37
|
-
"@types/lodash-es": "^4.17.1",
|
|
38
|
-
"@types/mock-fs": "^3.6.30",
|
|
39
|
-
"@types/node": "^10.9.4",
|
|
40
|
-
"del-cli": "^1.1.0",
|
|
41
|
-
"jest": "^23.5.0",
|
|
42
|
-
"mock-fs": "^4.6.0",
|
|
43
|
-
"semantic-release": "^15.9.12",
|
|
44
|
-
"ts-jest": "^23.1.4",
|
|
45
|
-
"tslint": "^5.11.0",
|
|
46
|
-
"tsutils": "^3.0.0",
|
|
47
|
-
"typedoc": "^0.12.0"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"lodash": "^4.17.10",
|
|
51
|
-
"lodash-es": "^4.17.10",
|
|
52
|
-
"tslib": "^1.9.3",
|
|
53
|
-
"typescript": "^3.0.3"
|
|
54
|
-
}
|
|
55
|
-
}
|